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