Files
tyra-linux/tutorials/01-hello/src/main.cpp
T
2022-07-29 23:11:12 +02:00

21 lines
494 B
C++

/*
# ______ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2022, 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;
}