Release 0.97

master
Kasi 2018-09-28 00:35:31 +01:00
parent 1fdf0356dc
commit 884cda288f
4 changed files with 21 additions and 3 deletions

View File

@ -0,0 +1,15 @@
#ifndef ACCOUNTMANAGEMENT_HPP_INCLUDED
#define ACCOUNTMANAGEMENT_HPP_INCLUDED
/** @addtogroup GameTabs
* @{ */
class AccountManagement
{
public:
static bool IsOpen();
static bool Open();
};
/** @} */
#endif // ACCOUNTMANAGEMENT_HPP_INCLUDED

View File

@ -3,7 +3,7 @@
#include "../../../Core/Types/Box.hpp" #include "../../../Core/Types/Box.hpp"
#include "../../../Core/Classes/World.hpp" #include "../../../Core/Classes/World.hpp"
#include "../../../Core/Classes/Widget.hpp" #include "../../../Game/Interactable/Widget.hpp"
#include <cstdint> #include <cstdint>
#include <vector> #include <vector>
@ -25,8 +25,8 @@ class Logout
static bool SwitchWorld(const Internal::World& World); static bool SwitchWorld(const Internal::World& World);
static bool SwitchWorld(std::int32_t WorldID); static bool SwitchWorld(std::int32_t WorldID);
static Internal::Widget GetWorldWidget(const Internal::World& World); static Interactable::Widget GetWorldWidget(const Internal::World& World);
static Internal::Widget GetWorldWidget(std::int32_t WorldID); static Interactable::Widget GetWorldWidget(std::int32_t WorldID);
}; };
/** @} */ /** @} */

View File

@ -82,6 +82,9 @@ class Pathfinding
operator bool() const; operator bool() const;
}; };
/** @brief Returns the region ID the local player is in */
static std::int32_t GetCurrentRegion();
/** @brief Clears the internal cached nodes, and generates new ones based on the local region */ /** @brief Clears the internal cached nodes, and generates new ones based on the local region */
static void GenerateNodes(); static void GenerateNodes();
/** /**

Binary file not shown.