From 95dc69834913030123c3d0f4a21a2388b5cf0102 Mon Sep 17 00:00:00 2001 From: Tobi Date: Sun, 15 Aug 2021 22:51:56 +0200 Subject: [PATCH] Update engine.hpp --- internal/engine.hpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/internal/engine.hpp b/internal/engine.hpp index d037800..7b54b55 100644 --- a/internal/engine.hpp +++ b/internal/engine.hpp @@ -26,8 +26,14 @@ enum EngineType _2D, _3D }; + +namespace Npi class Game { public: Game(EngineType, std::string name); - ~Game(); + ~Game(){} + private: + std::string g_name; + EngineType g_etype; }; +}