]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/net_notice.qh
Rename defs to qh
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / net_notice.qh
1 #ifndef NET_NOTICE_H
2 #define NET_NOTICE_H
3
4 #if defined(CSQC)
5 #elif defined(MENUQC)
6 #elif defined(SVQC)
7     #include "util-pre.qh"
8     #include "../server/sys-pre.qh"
9     #include "../dpdefs/progsdefs.qh"
10     #include "../dpdefs/dpextensions.qh"
11     #include "../server/sys-post.qh"
12     #include "../warpzonelib/anglestransform.qh"
13     #include "../warpzonelib/mathlib.qh"
14     #include "../warpzonelib/common.qh"
15     #include "../warpzonelib/util_server.qh"
16     #include "../warpzonelib/server.qh"
17     #include "constants.qh"
18     #include "stats.qh"
19     #include "teams.qh"
20     #include "util.qh"
21     #include "nades.qh"
22     #include "buffs.qh"
23     #include "test.qh"
24     #include "counting.qh"
25     #include "urllib.qh"
26     #include "command/markup.qh"
27     #include "command/rpn.qh"
28     #include "command/generic.qh"
29     #include "command/shared_defs.qh"
30 #endif
31
32 #ifdef CSQC
33 void cl_notice_read();
34 void sv_notice_to(entity _to, string _notice, float _howlong, float _modal);
35 #endif
36
37 #ifdef SVQC
38 string autocvar_sv_join_notices;
39 float  autocvar_sv_join_notices_time;
40
41 void sv_notice_to(entity _to, string _notice, float _howlong, float _modal);
42 void sv_notice_toall(string _notice, float _howlong, float _modal);
43 void sv_notice_join();
44 #endif
45 #endif