diff --git a/include/cstrike/Interfaces/IVEngineClient.h b/include/cstrike/Interfaces/IVEngineClient.h index 9e01e41..02fec91 100644 --- a/include/cstrike/Interfaces/IVEngineClient.h +++ b/include/cstrike/Interfaces/IVEngineClient.h @@ -2,6 +2,10 @@ class IVEngineClient { public: + void GetScreenSize(int& width, int& height) { + return GetVirtualFunction(this, 5)(this, width, height); + } + bool Con_IsVisible() { return GetVirtualFunction(this, 11)(this); }