fixed windows builds

This commit is contained in:
2025-07-20 00:45:31 +03:00
parent 070c3ff309
commit fb4c201921
26 changed files with 519 additions and 338 deletions

View File

@@ -2,11 +2,14 @@
#define LEVEL_H
#include "engine.h"
#include "interface.h"
interface ILevel
interface ILevelManager: public IInterface
{
public:
static void LoadLevel( const char *szLevelName );
virtual void LoadLevel( const char *szLevelName ) = 0;
};
ILevelManager *LevelManager();
#endif