mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-24 06:39:51 +00:00
24 lines
705 B
C++
24 lines
705 B
C++
/*!
|
|
* @file main.cpp
|
|
* Main for the game. Launches the runtime.
|
|
*/
|
|
#include <cstdio>
|
|
#include "runtime.h"
|
|
#include "common/versions.h"
|
|
#include "third-party/spdlog/include/spdlog/spdlog.h"
|
|
#include "third-party/spdlog/include/spdlog/sinks/basic_file_sink.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
while (true) {
|
|
spdlog::set_level(spdlog::level::debug);
|
|
auto my_logger = spdlog::basic_logger_mt("file_logger", "logs/basic-log.txt");
|
|
// run the runtime in a loop so we can reset the game and have it restart cleanly
|
|
spdlog::info("gk {}.{} OK!\n", versions::GOAL_VERSION_MAJOR, versions::GOAL_VERSION_MINOR);
|
|
|
|
if (exec_runtime(argc, argv) == 2) {
|
|
return 0;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|