Add engine entrypoint, glad and game

This commit is contained in:
Rick van Vonderen
2019-12-10 23:45:37 +01:00
parent 940b87d9c6
commit 3b9752e9e2
9 changed files with 5157 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "engine.h"
class Game : public Engine::Application
{
public:
Game() {};
~Game() {};
};
Engine::Application *Engine::CreateApplication()
{
return new Game();
}