Rename Engine to Inferno

This commit is contained in:
Rick van Vonderen
2019-12-12 23:21:18 +01:00
parent 173d28e13f
commit 24dd128093
13 changed files with 46 additions and 46 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
#include "engine.h"
#include "inferno.h"
class Game : public Engine::Application
class Game : public Inferno::Application
{
public:
Game() {};
~Game() {};
};
Engine::Application* Engine::createApplication()
Inferno::Application* Inferno::createApplication()
{
return new Game();
}