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-03-02 14:54:39 +03:00

8 lines
135 B
C++

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