add demo directory

This commit is contained in:
h4570
2022-07-27 00:10:56 +02:00
parent 21073a8a99
commit af843fba87
8 changed files with 110 additions and 2 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 "demo.hpp"
int main() {
Tyra::Engine engine;
Tyra::Demo game(&engine);
engine.run(&game);
SleepThread();
return 0;
}