Release 1.78

master
Kasi 2022-04-21 00:47:57 +01:00
parent c4fe78ab68
commit 993f58b826
5 changed files with 11 additions and 12 deletions

View File

@ -23,7 +23,6 @@ namespace Internal
static Class GetClass(); static Class GetClass();
std::vector<std::string> GetActions() const; std::vector<std::string> GetActions() const;
std::int32_t GetBorderThickness() const;
std::int32_t GetBoxIndex() const; std::int32_t GetBoxIndex() const;
std::vector<Widget> GetChildren() const; std::vector<Widget> GetChildren() const;
Widget GetChildren(std::int32_t I) const; Widget GetChildren(std::int32_t I) const;
@ -40,6 +39,7 @@ namespace Internal
std::int32_t GetModelID() const; std::int32_t GetModelID() const;
std::string GetName() const; std::string GetName() const;
bool GetNoClickThrough() const; bool GetNoClickThrough() const;
std::int32_t GetOutline() const;
Widget GetParent() const; Widget GetParent() const;
std::int32_t GetParentID() const; std::int32_t GetParentID() const;
std::int32_t GetRelativeX() const; std::int32_t GetRelativeX() const;

View File

@ -159,8 +159,6 @@ namespace Internal
IndexableData GetItemIndexableData(); IndexableData GetItemIndexableData();
Cache GetItemInfoCache(); Cache GetItemInfoCache();
Cache GetItemModelCache(); Cache GetItemModelCache();
std::int32_t GetItemSelected();
std::int32_t GetItemSelectedIndex();
Cache GetItemSpriteCache(); Cache GetItemSpriteCache();
std::vector<std::int8_t> GetKeysPressed(); std::vector<std::int8_t> GetKeysPressed();
std::vector<std::int32_t> GetLevels(); std::vector<std::int32_t> GetLevels();
@ -211,10 +209,9 @@ namespace Internal
std::vector<Player> GetPlayers(); std::vector<Player> GetPlayers();
Deque GetProjectiles(); Deque GetProjectiles();
std::int32_t GetRunEnergy(); std::int32_t GetRunEnergy();
std::string GetSelectedItemName(); bool GetSelected();
std::string GetSelectedSpellName(); std::string GetSelectedText();
std::vector<std::int32_t> GetSettings(); std::vector<std::int32_t> GetSettings();
bool GetSpellSelected();
Cache GetSpotAnimationCache(); Cache GetSpotAnimationCache();
Cache GetSpotAnimationModelCache(); Cache GetSpotAnimationModelCache();
std::vector<std::vector<std::vector<std::int32_t>>> GetTileHeights(); std::vector<std::vector<std::vector<std::int32_t>>> GetTileHeights();
@ -313,7 +310,7 @@ namespace Internal
std::vector<std::vector<std::int8_t>> GetVisibilityMap(std::int32_t CameraPitch, std::int32_t CameraYaw); std::vector<std::vector<std::int8_t>> GetVisibilityMap(std::int32_t CameraPitch, std::int32_t CameraYaw);
std::int32_t GetTileHeights(std::int32_t X, std::int32_t Y, std::int32_t Plane); std::int32_t GetTileHeights(std::int32_t X, std::int32_t Y, std::int32_t Plane);
std::int8_t GetTileSettings(std::int32_t X, std::int32_t Y, std::int32_t Plane); std::int8_t GetTileSettings(std::int32_t X, std::int32_t Y, std::int32_t Plane);
std::int32_t GetCollisionFlags(std::int32_t X, std::int32_t Y, std::int32_t Plane);
std::vector<std::int8_t> ToByteArray(const Object& O); std::vector<std::int8_t> ToByteArray(const Object& O);
} }
#endif // INTERNAL_HPP_INCLUDED #endif // INTERNAL_HPP_INCLUDED

View File

@ -11,11 +11,11 @@ namespace Internal
public: public:
void* Obj = nullptr; void* Obj = nullptr;
Object(const void* Obj = nullptr); Object(const void* Obj = nullptr) noexcept;
Object(Object&& Obj); Object(Object&& Obj) noexcept;
Object(const Object& Obj); Object(const Object& Obj) noexcept;
Object& operator=(Object&& Obj); Object& operator=(Object&& Obj) noexcept;
Object& operator=(const Object& Obj); Object& operator=(const Object& Obj) noexcept;
bool operator==(const Object& O) const; bool operator==(const Object& O) const;
bool operator!=(const Object& O) const; bool operator!=(const Object& O) const;

View File

@ -35,6 +35,8 @@ namespace Inventory
bool IsEmpty(); bool IsEmpty();
bool IsFull(); bool IsFull();
std::int32_t GetItemSelectedIndex();
bool IsItemSelected(); bool IsItemSelected();
bool IsItemSelected(std::int32_t ID); bool IsItemSelected(std::int32_t ID);
bool IsItemSelected(const std::string& Name); bool IsItemSelected(const std::string& Name);

Binary file not shown.