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
+21
View File
@@ -0,0 +1,21 @@
/*
# ______ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2020, tyra - https://github.com/h4570/tyra
# Licenced under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#include "demo.hpp"
namespace Tyra {
Demo::Demo(Engine* t_engine) { engine = t_engine; }
Demo::~Demo() {}
void Demo::init() { TYRA_LOG("Init!"); }
void Demo::loop() {}
} // namespace Tyra