Files
Aeon/Game/ExampleGame.cpp
2021-08-19 00:12:06 +01:00

34 lines
440 B
C++

// simple raycast shooter
// shotgun fun fun yanno
#include <iostream>
#include <Aeon/Aeon.hpp>
#include <Aeon/Core/Events.hpp>
class ExampleGame : public Aeon::Core::App
{
public:
// take command line args better (parse them first!)
ExampleGame()
: App( { "Game with AEON!" } )
{
Run();
}
~ExampleGame()
{
}
};
int main( int argc, char** argv )
{
ExampleGame game;
return 0;
}