This commit is contained in:
Quentin
2023-07-02 00:59:02 +02:00
committed by GitHub
parent f96356960a
commit 3bdd0796f4
56 changed files with 2804 additions and 24 deletions

View File

@ -12,6 +12,7 @@
#include "bindings/script.hpp"
#include "bindings/tunables.hpp"
#include "bindings/vector.hpp"
#include "bindings/global_table.hpp"
#include "file_manager.hpp"
#include "script_mgr.hpp"
@ -120,6 +121,6 @@ namespace big
lua::locals::bind(m_state);
lua::event::bind(m_state);
lua::vector::bind(m_state);
m_state["joaat"] = rage::joaat;
lua::global_table::bind(m_state);
}
}