mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
13 lines
141 B
C++
13 lines
141 B
C++
#ifndef SDK_DLL_H
|
|
#define SDK_DLL_H
|
|
|
|
class CEngineSDK
|
|
{
|
|
public:
|
|
void FixedFrame();
|
|
};
|
|
|
|
extern CEngineSDK* g_EngineSDK;
|
|
|
|
#endif // SDK_DLL_H
|