diff options
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..6cd0301 --- /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; +} |