Create engine.hpp

This commit is contained in:
tobid7 2021-08-15 22:46:41 +02:00 committed by GitHub
parent 235c2c2d7e
commit 44f618e9d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

15
internal/engine.hpp Normal file
View File

@ -0,0 +1,15 @@
#pragma once
#include <3ds.h>
#include <citro2d.h>
#imclude <citro3d.h>
enum EngineType
{
_2D,
_3D
};
class Game {
public:
Game(EngineType, std::string name);
~Game();
};