Feat lua stats (#1875)

This commit is contained in:
Quentin
2023-07-28 10:07:17 +02:00
committed by GitHub
parent 96493b5a22
commit 93966dc3b1
4 changed files with 601 additions and 0 deletions

View File

@ -13,6 +13,7 @@
#include "bindings/native.hpp"
#include "bindings/network.hpp"
#include "bindings/script.hpp"
#include "bindings/stats.hpp"
#include "bindings/tunables.hpp"
#include "bindings/vector.hpp"
#include "file_manager.hpp"
@ -208,6 +209,7 @@ namespace big
lua::global_table::bind(m_state);
lua::imgui::bind(m_state, m_state.globals());
lua::entities::bind(m_state);
lua::stats::bind(m_state);
}
void lua_module::load_and_call_script()