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

View File

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

View File

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

View File

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

Binary file not shown.