diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-12 18:28:12 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-12 18:28:12 +0100 |
commit | daf2a06ac778f203e1473431afe09476e8182f65 (patch) | |
tree | d057891d87c946b7f3b28c4c8fc6a27b730c0d7d /src/example/gameloop.cpp | |
parent | 0e9a4b0e9b4ba92290c106cda7164607c499940c (diff) | |
parent | d9130d78738b6cb1bdc4e7ec65362b0ef46b1035 (diff) |
Merge branch 'master' into loek/cleanup
Diffstat (limited to 'src/example/gameloop.cpp')
-rw-r--r-- | src/example/gameloop.cpp | 7 |
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; +} |