Files
tyra-linux/samples/wellinator/src/main.cpp
T
2022-07-17 10:21:35 +02:00

21 lines
484 B
C++

/*
# ______ ____ ___
# | \/ ____| |___|
# | | | \ | |
#-----------------------------------------------------------------------
# Copyright 2020, tyra - https://github.com/h4570/tyra
# Licenced under Apache License 2.0
# Wellington Carvalho <wellcoj@gmail.com>
*/
#include "engine.hpp"
#include "wellinator.hpp"
int main() {
Tyra::Engine engine;
Tyra::Wellinator game(&engine);
engine.run(&game);
SleepThread();
return 0;
}