aboutsummaryrefslogtreecommitdiff
path: root/src/example/gameloop.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-12 18:28:12 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-12 18:28:12 +0100
commitdaf2a06ac778f203e1473431afe09476e8182f65 (patch)
treed057891d87c946b7f3b28c4c8fc6a27b730c0d7d /src/example/gameloop.cpp
parent0e9a4b0e9b4ba92290c106cda7164607c499940c (diff)
parentd9130d78738b6cb1bdc4e7ec65362b0ef46b1035 (diff)
Merge branch 'master' into loek/cleanup
Diffstat (limited to 'src/example/gameloop.cpp')
-rw-r--r--src/example/gameloop.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/example/gameloop.cpp b/src/example/gameloop.cpp
new file mode 100644
index 0000000..a676f20
--- /dev/null
+++ b/src/example/gameloop.cpp
@@ -0,0 +1,7 @@
+#include "crepe/api/LoopManager.h"
+using namespace crepe;
+int main() {
+ LoopManager gameloop;
+ gameloop.start();
+ return 1;
+}