21 lines
483 B
C++
21 lines
483 B
C++
/*
|
|
# ______ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2020, tyra - https://github.com/h4570/tyra
|
|
# Licenced under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#include "engine.hpp"
|
|
#include "h4570.hpp"
|
|
|
|
int main() {
|
|
Tyra::Engine engine;
|
|
Tyra::H4570 game(&engine);
|
|
engine.run(&game);
|
|
SleepThread();
|
|
return 0;
|
|
}
|