Move tyra-linux template into its own repo

This commit is contained in:
2026-06-11 00:49:08 +01:00
commit 401fce7918
25 changed files with 738 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "racer_game.hpp"
namespace Racer {
using namespace Tyra;
RacerGame::RacerGame(Engine* t_engine) { engine = t_engine; }
RacerGame::~RacerGame() {}
void RacerGame::init() { TYRA_LOG("Hello!"); }
void RacerGame::loop() { TYRA_LOG("Loop!"); }
} // namespace Racer