ennit
This commit is contained in:
@@ -1,9 +1,24 @@
|
||||
// simple raycast shooter
|
||||
|
||||
#include <Aeon/Aeon.hpp>
|
||||
#include "Aeon/Aeon.hpp"
|
||||
|
||||
class ExampleGame : public Aeon::Core::App {
|
||||
public:
|
||||
|
||||
ExampleGame()
|
||||
: App( { "Game with AEON!" } )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
~ExampleGame() override
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
int main( int argc, char** argv )
|
||||
{
|
||||
Aeon::Core::Engine engine;
|
||||
auto& display = engine.getDisplay();
|
||||
ExampleGame game;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user