Files
Aeon/Game/ExampleGame.cpp
2021-08-13 22:05:49 +01:00

25 lines
281 B
C++

// simple raycast shooter
#include "Aeon/Aeon.hpp"
class ExampleGame : public Aeon::Core::App {
public:
ExampleGame()
: App( { "Game with AEON!" } )
{
}
~ExampleGame() override
{
}
};
int main( int argc, char** argv )
{
ExampleGame game;
}