10 lines
215 B
C++
10 lines
215 B
C++
#include "engine/core/game_app.h"
|
|
#include <spdlog/spdlog.h>
|
|
|
|
int main(int /* argc */, char* /* argv */[]) {
|
|
spdlog::set_level(spdlog::level::info);
|
|
|
|
engine::core::GameApp app;
|
|
app.run();
|
|
return 0;
|
|
} |