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
+30
View File
@@ -0,0 +1,30 @@
/*
# ______ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2020 - 2022, tyra - https://github.com/h4570/tyra
# Licenced under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#pragma once
#include <engine.hpp>
#include <game.hpp>
namespace Tyra {
class Demo : public Game {
public:
Demo(Engine* engine);
~Demo();
void init();
void loop();
private:
Engine* engine;
};
} // namespace Tyra