Files
Aeon/Game/ExampleGame.cpp
2021-08-14 22:47:15 +01:00

31 lines
385 B
C++

// simple raycast shooter
// shotgun fun fun yanno
#include "Aeon/Aeon.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;
}