From a2173d5268461508a864ae77193225e2ff8ffedd Mon Sep 17 00:00:00 2001 From: hzqst <113660872@qq.com> Date: Wed, 24 Dec 2025 10:17:47 +0800 Subject: [PATCH] Update utils.h, fix missing #include --- src/utils/utils.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils/utils.h b/src/utils/utils.h index 7ff530ab..de4c434d 100644 --- a/src/utils/utils.h +++ b/src/utils/utils.h @@ -21,6 +21,7 @@ #include "playerslot.h" #include "utlvector.h" +#include class CServerSideClient; @@ -31,4 +32,4 @@ CUtlVector* GetClientList(); CServerSideClient* GetClientBySlot(CPlayerSlot slot); uint32 GetSoundEventHash(const char* pszSoundEventName); -std::string StringToLower(std::string strValue); \ No newline at end of file +std::string StringToLower(std::string strValue);