20 lines
276 B
C++
20 lines
276 B
C++
//
|
|
// Created by kj16609 on 11/27/23.
|
|
//
|
|
|
|
#include <iostream>
|
|
|
|
#include "engine/EngineContext.hpp"
|
|
#include "engine/logging.hpp"
|
|
|
|
int main()
|
|
{
|
|
spdlog::set_level( spdlog::level::debug );
|
|
|
|
fgl::engine::EngineContext engine_ctx {};
|
|
|
|
engine_ctx.run();
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|