X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fclient%2Fmain.qh;h=6774e757d1bda53f63937a43dce02f19a11f0398;hb=8141387a9bf057652453a8d4dc530116cf4cc31a;hp=288a303ccad4008ab87f4902131381736ee5cb52;hpb=f555d10bc3a73f96d426cd2f3e10972aa5c9c0d2;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/client/main.qh b/qcsrc/client/main.qh index 288a303cc..6774e757d 100644 --- a/qcsrc/client/main.qh +++ b/qcsrc/client/main.qh @@ -2,6 +2,12 @@ #include #include +#include + +// z411 +string hostname_full; +string motd_permanent; +int sv_timer_countdown; bool autocvar_cl_db_saveasdump; bool autocvar_cl_spawn_event_particles; @@ -78,12 +84,14 @@ entity teamslots[17]; // 17 teams (including "spectator team") IntrusiveList g_drawables; IntrusiveList g_drawables_2d; +IntrusiveList g_damagetext; IntrusiveList g_radarlinks; IntrusiveList g_radaricons; STATIC_INIT(main) { g_drawables = IL_NEW(); g_drawables_2d = IL_NEW(); + g_damagetext = IL_NEW(); g_radarlinks = IL_NEW(); g_radaricons = IL_NEW(); } @@ -166,8 +174,16 @@ string GetSpeedUnit(int speed_unit); .int enttype; // entity type sent from server .int sv_entnum; // entity number sent from server +// z411 accuracy info +.float accuracy_frags[REGISTRY_MAX(Weapons)]; +.float accuracy_hit[REGISTRY_MAX(Weapons)]; +.float accuracy_cnt_hit[REGISTRY_MAX(Weapons)]; +.float accuracy_cnt_fired[REGISTRY_MAX(Weapons)]; + .int team; .int team_size; +.int countrycode; +.string rank; int binddb; @@ -191,3 +207,4 @@ float serverprevtime, serverdeltatime; float ticrate; int serverflags; +