events hmmmm

This commit is contained in:
Ben
2021-08-14 01:44:46 +01:00
parent 03bf5c4a7d
commit a6fb1b2d11
4 changed files with 45 additions and 6 deletions

View File

@@ -1,11 +1,14 @@
// simple raycast shooter
// shotgun fun fun yanno
#include "Aeon/Aeon.hpp"
class ExampleGame : public Aeon::Core::App {
class ExampleGame : public Aeon::Core::App
{
public:
ExampleGame()
// take command line args better (parse them first!)
ExampleGame( int argc, char** argv )
: App( { "Game with AEON!" } )
{
@@ -20,5 +23,5 @@ public:
int main( int argc, char** argv )
{
ExampleGame game;
ExampleGame game(argc, argv);
}