initial commit

This commit is contained in:
chatlanin
2023-02-26 15:16:48 +03:00
commit 5a829fad05
65 changed files with 2734 additions and 0 deletions

7
bin/main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include "engine/engine.hpp"
auto main(int argc, char* args[]) -> int
{
decltype(auto) app = tr::core::create_app();
app.run();
}

6
bin/meson.build Normal file
View File

@@ -0,0 +1,6 @@
executable(
'rrr.v2',
'main.cpp',
dependencies : deps,
cpp_args: args
)