Release 0.78

master
Kasi 2018-07-31 13:20:27 +01:00
parent 594aae4221
commit dc72c8c984
5 changed files with 5 additions and 2 deletions

View File

@ -46,7 +46,7 @@ class Point
* @brief Returns the distance from one Point to another * @brief Returns the distance from one Point to another
* @return 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 * @brief Returns True if the Point is inside the passed Box
* @return True if the Point is inside the passed Box * @return True if the Point is inside the passed Box

View File

@ -50,7 +50,7 @@ class Tile
* @brief Returns the distance from one Tile to another * @brief Returns the distance from one Tile to another
* @return 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 * @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 * @return True if the Tile is less than 0, not equal to

View File

@ -56,6 +56,7 @@ class Chat
static std::vector<std::string> GetDialogueOptions(); static std::vector<std::string> GetDialogueOptions();
static std::string GetDialogueTitle(); static std::string GetDialogueTitle();
static std::string GetDialogueMessage(); static std::string GetDialogueMessage();
static std::string GetDialogueContent();
static std::int32_t GetDialogueOptionIndexOf(const std::string& Option); static std::int32_t GetDialogueOptionIndexOf(const std::string& Option);
static std::int32_t GetDialogueOptionIndexOf(const std::vector<std::string>& Options); static std::int32_t GetDialogueOptionIndexOf(const std::vector<std::string>& Options);

View File

@ -72,6 +72,8 @@ class Minimap
* @return true if the function succesfully clicked the orb * @return true if the function succesfully clicked the orb
*/ */
static bool ClickToggleRun(); static bool ClickToggleRun();
static bool ClickTile(const Tile& T);
}; };
/** @} */ /** @} */

Binary file not shown.