This commit is contained in:
Ben
2021-08-13 22:05:49 +01:00
parent a15b77ad15
commit 03bf5c4a7d
10 changed files with 59 additions and 14 deletions

View File

@@ -1,9 +1,24 @@
// simple raycast shooter
#include <Aeon/Aeon.hpp>
#include "Aeon/Aeon.hpp"
class ExampleGame : public Aeon::Core::App {
public:
ExampleGame()
: App( { "Game with AEON!" } )
{
}
~ExampleGame() override
{
}
};
int main( int argc, char** argv )
{
Aeon::Core::Engine engine;
auto& display = engine.getDisplay();
ExampleGame game;
}