This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
game/include/Components/TopLevel/Game.hpp
2021-02-25 23:13:05 +02:00

14 lines
No EOL
212 B
C++

#ifndef _GAME_H
#define _GAME_H
struct Game : public GameObject {
Game() : GameObject("game") {
std::cout << "[+] Game" << '\n';
}
bool isGame();
};
void registerGame(lua_State* L);
#endif