r5sdk/r5dev/engine/sdk_dll.h
Kawe Mazidjatari fcf3a09418 Make singletons use static memory
Avoid heap memory allocation and a level of indirection. This allows the compiler to optimize the program even more. No logic has been changed in this patch.
2024-04-05 17:52:57 +02:00

13 lines
140 B
C++

#ifndef SDK_DLL_H
#define SDK_DLL_H
class CEngineSDK
{
public:
void FixedFrame();
};
extern CEngineSDK g_EngineSDK;
#endif // SDK_DLL_H