#ifndef GAME_WINDOW_H #define GAME_WINDOW_H #include "iappsystem.h" #include "tier0/platform.h" abstract_class IGameWindow: public IAppSystem { public: virtual void UpdateWindow() = 0; }; extern IGameWindow *gamewindow; #endif