Release 0.24

master
Kasi 2018-04-08 02:15:44 +01:00
parent 1d04f9fe0a
commit 5bbffba4dd
3 changed files with 30 additions and 1 deletions

View File

@ -0,0 +1,28 @@
#ifndef COLLISIONDATA_HPP_INCLUDED
#define COLLISIONDATA_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
namespace Internal
{
class CollisionData : public Object
{
public:
CollisionData();
CollisionData(const void* Obj);
CollisionData(const CollisionData& C);
static Class GetClass();
std::vector<std::vector<std::int32_t>> GetFlags() const;
std::int32_t GetHeight() const;
std::int32_t GetWidth() const;
std::int32_t GetX() const;
std::int32_t GetY() const;
};
}
#endif // COLLISIONDATA_HPP_INCLUDED

View File

@ -38,6 +38,7 @@
#include "Classes/ChatLineBuffer.hpp" #include "Classes/ChatLineBuffer.hpp"
#include "Classes/ClanMember.hpp" #include "Classes/ClanMember.hpp"
#include "Classes/ClanMemberList.hpp" #include "Classes/ClanMemberList.hpp"
#include "Classes/CollisionData.hpp"
#include "Classes/DecorativeObject.hpp" #include "Classes/DecorativeObject.hpp"
#include "Classes/Deque.hpp" #include "Classes/Deque.hpp"
#include "Classes/DirectByteBuffer.hpp" #include "Classes/DirectByteBuffer.hpp"
@ -103,6 +104,7 @@ namespace Internal
Preferences GetClientPreferences(); Preferences GetClientPreferences();
std::int32_t GetClientX(); std::int32_t GetClientX();
std::int32_t GetClientY(); std::int32_t GetClientY();
std::vector<CollisionData> GetCollisionMaps();
std::int32_t GetCrosshairState(); std::int32_t GetCrosshairState();
std::vector<std::int32_t> GetCurrentLevels(); std::vector<std::int32_t> GetCurrentLevels();
std::int32_t GetCurrentWorld(); std::int32_t GetCurrentWorld();
@ -159,7 +161,6 @@ namespace Internal
AttackOption GetPlayerAttackOption(); AttackOption GetPlayerAttackOption();
Cache GetPlayerModelCache(); Cache GetPlayerModelCache();
std::vector<Player> GetPlayers(); std::vector<Player> GetPlayers();
std::int32_t GetPressedItemIndex();
std::int32_t GetRunEnergy(); std::int32_t GetRunEnergy();
std::string GetSelectedItemName(); std::string GetSelectedItemName();
std::string GetSelectedSpellName(); std::string GetSelectedSpellName();

Binary file not shown.