case HUD_PANEL_ENGINEINFO: HUD_Panel_UpdatePosSize(engineinfo) break;\
default: HUD_Panel_UpdatePosSizeForId_Part2(id)\
}
+
+#define KN_MAX_ENTRIES 10
+
+float kn_index;
+float killnotify_times[KN_MAX_ENTRIES];
+string killnotify_icon[KN_MAX_ENTRIES];
+string killnotify_attackers[KN_MAX_ENTRIES];
+string killnotify_victims[KN_MAX_ENTRIES];
+void HUD_Notify_Push(string icon, string attacker, string victim);
void Local_Notification_Without_VarArgs(float net_type, float net_name, float stringcount, float floatcount, string s1, string s2, string s3, string s4, float f1, float f2, float f3, float f4);
#ifdef CSQC // CLIENT ONLY
-#define KN_MAX_ENTRIES 10
-
-float kn_index;
-float killnotify_times[KN_MAX_ENTRIES];
-string killnotify_icon[KN_MAX_ENTRIES];
-string killnotify_attackers[KN_MAX_ENTRIES];
-string killnotify_victims[KN_MAX_ENTRIES];
-void HUD_Notify_Push(string icon, string attacker, string victim);
void Read_Notification(float is_new);
-#endif // ifdef CSQC
+#endif
#ifdef SVQC // SERVER ONLY
#define NOTIF_ONE 1
void Send_CSQC_Centerprint_Generic(entity e, float id, string s, float duration, float countdown_num);
void Send_CSQC_Centerprint_Generic_Expire(entity e, float id);
-#endif // ifdef SVQC
+#endif
// ====================================