improvements

This commit is contained in:
2025-12-14 12:32:24 +02:00
parent 90a0c55d1d
commit c4406d1891
20 changed files with 529 additions and 95 deletions

15
public/gamesystem.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef GAME_SYSTEM_H
#define GAME_SYSTEM_H
#include "tier1/interface.h"
abstract_class IGameSystem
{
public:
virtual void Init() = 0;
virtual void Tick( float fDelta ) = 0;
virtual void Frame( float fDelta ) = 0;
virtual void Shutdown() = 0;
};
#endif