Layers ARE EVENT LISTENERS??? *whaaat*

This commit is contained in:
Ben
2021-09-20 19:30:22 +01:00
parent 8b74ad752c
commit dec2af6408
5 changed files with 61 additions and 22 deletions

View File

@@ -12,8 +12,10 @@ public:
// take command line args better (parse them first!)
ExampleGame()
: App( { "Game with AEON!" } )
: App( { "Example" }, { "Game with AEON!" } )
{
GameLevel game;
PushLayer( game );
Run();
}
@@ -24,6 +26,12 @@ public:
};
class GameLevel : public Aeon::Core::GameLayer
{
public:
};
int main( int argc, char** argv )
{