KoiKoi/src/main.cpp

14 lines
250 B
C++
Raw Normal View History

2022-01-08 15:54:36 +00:00
#include <spdlog/spdlog.h>
#include "Application.hpp"
int main(int argc, char** argv)
{
spdlog::set_pattern("[%H:%M:%S] [%^%l%$] %v");
#ifndef NDEBUG
spdlog::set_level(spdlog::level::debug);
#endif
Application::GetInstance().Run();
return 0;
}