diff --git a/Include/Core/Script.hpp b/Include/Core/Script.hpp index 84aabf6..0ceb52b 100644 --- a/Include/Core/Script.hpp +++ b/Include/Core/Script.hpp @@ -3,8 +3,11 @@ #include #include +#include #include "Types/Timer.hpp" +extern std::atomic_bool Terminate; + extern void Setup(); extern bool OnStart(); extern bool Loop(); diff --git a/Include/Game/Interfaces/Chat.hpp b/Include/Game/Interfaces/Chat.hpp index be361e6..e10fdf7 100644 --- a/Include/Game/Interfaces/Chat.hpp +++ b/Include/Game/Interfaces/Chat.hpp @@ -63,7 +63,7 @@ class Chat static bool ClickContinue(bool UseKeyboard = false); static bool EnterAmount(std::int32_t Amount); - static bool SelectDialogueOption(std::uint32_t Index, bool UseKeyboard = false); // Index starts at 0 + static bool SelectDialogueOption(std::int32_t Index, bool UseKeyboard = false); // Index starts at 0 static bool SelectDialogueOption(const std::string& Option, bool UseKeyboard = false); static bool SelectDialogueOption(const std::vector& Options, bool UseKeyboard = false); diff --git a/Library/libAlpacaLibrary.a b/Library/libAlpacaLibrary.a index 839bfa7..6f23201 100644 Binary files a/Library/libAlpacaLibrary.a and b/Library/libAlpacaLibrary.a differ