From 74f70c61a37c94727e1411696f050cf588cf3446 Mon Sep 17 00:00:00 2001 From: max-001 Date: Fri, 20 Dec 2024 12:05:52 +0100 Subject: Fix merge issues --- src/example/game.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/example/game.cpp') diff --git a/src/example/game.cpp b/src/example/game.cpp index 378a64a..b9f98fc 100644 --- a/src/example/game.cpp +++ b/src/example/game.cpp @@ -1,13 +1,13 @@ #include "GameScene.h" -#include +#include using namespace crepe; using namespace std; int main(int argc, char * argv[]) { - LoopManager gameloop; + Engine gameloop; gameloop.add_scene(); - gameloop.start(); - return 0; + + return gameloop.main(); } -- cgit v1.2.3