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

8 lines
135 B
C++
Raw Normal View History

2023-03-02 14:54:39 +03:00
#include "sandbox/sandbox.hpp"
auto main(int argc, char* args[]) -> int
{
decltype(auto) app = try_engine::create();
app.run();
}