From 9429c5a6c5557cedf91d7deec94e097ea4a1934b Mon Sep 17 00:00:00 2001 From: GAMMACASE Date: Mon, 4 Sep 2023 00:01:21 +0300 Subject: [PATCH] Add missing CommandTarget_t --- public/tier1/convar.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/tier1/convar.h b/public/tier1/convar.h index 716bc30f..e0e1d715 100644 --- a/public/tier1/convar.h +++ b/public/tier1/convar.h @@ -64,6 +64,12 @@ private: private: static const uint32 kInvalidConVarHandle = 0xFFFFFFFF; } ALIGN8_POST; +enum CommandTarget_t +{ + CT_NO_TARGET = -1, + CT_FIRST_SPLITSCREEN_CLIENT = 0, + CT_LAST_SPLITSCREEN_CLIENT = 3, +}; class CCommandContext {