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