This repository has been archived on 2024-05-28. You can view files and clone it, but cannot push or open issues or pull requests.
try_engine/bin/main.cpp
2023-05-23 12:24:10 +03:00

8 lines
135 B
C++
Executable File

#include "sandbox/sandbox.hpp"
auto main(int argc, char* args[]) -> int
{
decltype(auto) app = try_engine::create();
app.run();
}