This commit is contained in:
h4570
2022-07-26 23:46:57 +02:00
parent b2c0bfbe11
commit 21073a8a99
20 changed files with 17 additions and 326 deletions
+20
View File
@@ -0,0 +1,20 @@
/*
# ______ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2020, tyra - https://github.com/h4570/tyra
# Licenced under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#include "engine.hpp"
#include "tutorial_01.hpp"
int main() {
Tyra::Engine engine;
Tyra::Tutorial01 game(&engine);
engine.run(&game);
SleepThread();
return 0;
}