diff --git a/Include/Core/Types/Point.hpp b/Include/Core/Types/Point.hpp index 9823ec0..b7bc949 100644 --- a/Include/Core/Types/Point.hpp +++ b/Include/Core/Types/Point.hpp @@ -46,7 +46,7 @@ class Point * @brief Returns the distance from one Point to another * @return The distance from one Point to another */ - std::int32_t DistanceFrom(Point P) const; + double DistanceFrom(Point P) const; /** * @brief Returns True if the Point is inside the passed Box * @return True if the Point is inside the passed Box diff --git a/Include/Core/Types/Tile.hpp b/Include/Core/Types/Tile.hpp index 79dacd8..7ce4e40 100644 --- a/Include/Core/Types/Tile.hpp +++ b/Include/Core/Types/Tile.hpp @@ -50,7 +50,7 @@ class Tile * @brief Returns the distance from one Tile to another * @return The distance from one Tile to another */ - std::int32_t DistanceFrom(Tile T) const; + double DistanceFrom(Tile T) const; /** * @brief Returns True if the Tile is less than 0, not equal to * @return True if the Tile is less than 0, not equal to diff --git a/Include/Game/Interfaces/Chat.hpp b/Include/Game/Interfaces/Chat.hpp index e10fdf7..0a40efd 100644 --- a/Include/Game/Interfaces/Chat.hpp +++ b/Include/Game/Interfaces/Chat.hpp @@ -56,6 +56,7 @@ class Chat static std::vector GetDialogueOptions(); static std::string GetDialogueTitle(); static std::string GetDialogueMessage(); + static std::string GetDialogueContent(); static std::int32_t GetDialogueOptionIndexOf(const std::string& Option); static std::int32_t GetDialogueOptionIndexOf(const std::vector& Options); diff --git a/Include/Game/Interfaces/Minimap.hpp b/Include/Game/Interfaces/Minimap.hpp index 86c7a08..aa3e755 100644 --- a/Include/Game/Interfaces/Minimap.hpp +++ b/Include/Game/Interfaces/Minimap.hpp @@ -72,6 +72,8 @@ class Minimap * @return true if the function succesfully clicked the orb */ static bool ClickToggleRun(); + + static bool ClickTile(const Tile& T); }; /** @} */ diff --git a/Library/libAlpacaLibrary.a b/Library/libAlpacaLibrary.a index ff6d38e..29daf70 100644 Binary files a/Library/libAlpacaLibrary.a and b/Library/libAlpacaLibrary.a differ