]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/net_notice.qh
Remove includes from most headers
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / net_notice.qh
1 #ifndef NET_NOTICE_H
2 #define NET_NOTICE_H
3
4 #ifdef CSQC
5 void cl_notice_read();
6 void sv_notice_to(entity _to, string _notice, float _howlong, float _modal);
7 #endif
8
9 #ifdef SVQC
10 string autocvar_sv_join_notices;
11 float  autocvar_sv_join_notices_time;
12
13 void sv_notice_to(entity _to, string _notice, float _howlong, float _modal);
14 void sv_notice_toall(string _notice, float _howlong, float _modal);
15 void sv_notice_join();
16 #endif
17 #endif