diff --git a/src/game/scripting/array.hpp b/src/game/scripting/array.hpp index 9150f04..cea2335 100644 --- a/src/game/scripting/array.hpp +++ b/src/game/scripting/array.hpp @@ -38,9 +38,6 @@ namespace scripting array& operator=(const array& other); array& operator=(array&& other) noexcept; - void add() const; - void release() const; - std::vector get_keys() const; unsigned int size() const; @@ -85,7 +82,11 @@ namespace scripting return {this->id_, this->get_value_id(key.key)}; } } + private: + void add() const; + void release() const; + unsigned int id_; }; } diff --git a/src/game/symbols.hpp b/src/game/symbols.hpp index 9e9b772..fd8bc4f 100644 --- a/src/game/symbols.hpp +++ b/src/game/symbols.hpp @@ -79,8 +79,8 @@ namespace game namespace plutonium { - WEAK symbol> function_map_rev{0x20589F68}; - WEAK symbol> method_map_rev{0x20589F88}; - WEAK symbol> token_map_rev{0x20589FC8}; + WEAK symbol> function_map_rev{0x2059A1A0}; + WEAK symbol> method_map_rev{0x2059A1C0}; + WEAK symbol> token_map_rev{0x2059A1E0}; } } \ No newline at end of file