no engine anymore

This commit is contained in:
2025-07-30 23:53:26 +03:00
parent 8a29e6b86f
commit 395ced9e28
159 changed files with 2767 additions and 9484 deletions

18
public/igamewindow.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef GAME_WINDOW_H
#define GAME_WINDOW_H
#include "iappsystem.h"
#include "tier0/platform.h"
#define GAME_WINDOW_INTERFACE_NAME "GameWindow001"
#define GAME_SDL_WINDOW_INTERFACE_NAME "SDLGameWindow001"
abstract_class IGameWindow: public IAppSystem
{
public:
virtual void UpdateWindow() = 0;
};
extern IGameWindow *gamewindow;
#endif