Update engine.hpp

This commit is contained in:
tobid7 2021-08-15 22:51:56 +02:00 committed by GitHub
parent 13916e3dff
commit 95dc698349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,8 +26,14 @@ enum EngineType
_2D, _2D,
_3D _3D
}; };
namespace Npi
class Game { class Game {
public: public:
Game(EngineType, std::string name); Game(EngineType, std::string name);
~Game(); ~Game(){}
private:
std::string g_name;
EngineType g_etype;
}; };
}