11 lines
131 B
C++
11 lines
131 B
C++
#include <game/engine.hpp>
|
|
|
|
int main() {
|
|
glfwInit();
|
|
|
|
auto engine = trb::game::engine();
|
|
engine.run();
|
|
|
|
glfwTerminate();
|
|
}
|