Files
tyra-linux/demo/src/main.cpp
T
2022-08-11 10:20:35 +02:00

21 lines
490 B
C++

/*
# _____ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2022, tyra - https://github.com/h4570/tyra
# Licensed under Apache License 2.0
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
*/
#include "engine.hpp"
#include "demo_game.hpp"
int main() {
Tyra::Engine engine;
Demo::DemoGame game(&engine);
engine.run(&game);
SleepThread();
return 0;
}