ResourceManager
This commit is contained in:
19
Src/IAESandbox/imp/hpp/Game.hpp
Normal file
19
Src/IAESandbox/imp/hpp/Game.hpp
Normal file
@ -0,0 +1,19 @@
|
||||
#pragma once
|
||||
|
||||
#include <IAEngine/IAEngine.hpp>
|
||||
|
||||
namespace ia::iae::game
|
||||
{
|
||||
class Game
|
||||
{
|
||||
public:
|
||||
Game(IN Engine* engine): m_engine(engine) {}
|
||||
|
||||
VOID Initialize();
|
||||
VOID Terminate();
|
||||
VOID Update();
|
||||
|
||||
private:
|
||||
Engine* CONST m_engine;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user