diff --git a/Include/Core/Internal.hpp b/Include/Core/Internal.hpp index b85f412..93900d8 100644 --- a/Include/Core/Internal.hpp +++ b/Include/Core/Internal.hpp @@ -333,5 +333,8 @@ namespace Internal std::vector GetWidgets(std::int32_t Container); Widget GetWidget(std::int32_t Container, std::int32_t Component); + void LockUpdate(); + void UnlockUpdate(); + } #endif // INTERNAL_HPP_INCLUDED diff --git a/Include/Game/Interfaces/Menu.hpp b/Include/Game/Interfaces/Menu.hpp index af71f0c..5b8fa05 100644 --- a/Include/Game/Interfaces/Menu.hpp +++ b/Include/Game/Interfaces/Menu.hpp @@ -27,13 +27,6 @@ namespace Menu std::int32_t GetCount(); - /** - * @brief Attempts to verify the order of the passed menu actions and targets - * @return true if the passed menu actions and targets are in the correct order - * @note This isn't a guarantee, but testing shows near zero failure rate - */ - bool OptionsValid(std::int32_t MenuCount, const std::vector& RawActions, const std::vector& RawTargets); - /** * @brief Get the menu actions * diff --git a/Library/libAlpacaLibrary.a b/Library/libAlpacaLibrary.a index fac476a..ca39b68 100644 Binary files a/Library/libAlpacaLibrary.a and b/Library/libAlpacaLibrary.a differ