Release 1.75

master
Kasi 2022-02-08 02:33:38 +00:00
parent 1ba6061825
commit f477641583
4 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,30 @@
#ifndef ITEMLAYER_HPP_INCLUDED
#define ITEMLAYER_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <string>
#include <cstdint>
namespace Internal
{
class ItemLayer : public Object
{
public:
ItemLayer(const void* Obj);
ItemLayer() = default;
ItemLayer(ItemLayer&& Obj) = default;
ItemLayer(const ItemLayer& Obj) = default;
ItemLayer& operator=(ItemLayer&& Obj) = default;
ItemLayer& operator=(const ItemLayer& Obj) = default;
static Class GetClass();
std::int32_t GetHeight() const;
};
}
#endif // ITEMLAYER_HPP_INCLUDED

View File

@ -7,6 +7,7 @@
#include <vector>
#include "GameObject.hpp"
#include "GroundObject.hpp"
#include "ItemLayer.hpp"
#include <cstdint>
#include "WallObject.hpp"
@ -29,6 +30,7 @@ namespace Internal
std::vector<GameObject> GetGameObjects() const;
GameObject GetGameObjects(std::int32_t I) const;
GroundObject GetGroundObject() const;
ItemLayer GetItemLayer() const;
std::int32_t GetPlane() const;
WallObject GetWallObject() const;
std::int32_t GetX() const;

View File

@ -66,6 +66,7 @@
#include "Classes/GraphicsObject.hpp"
#include "Classes/GroundItem.hpp"
#include "Classes/GroundObject.hpp"
#include "Classes/ItemLayer.hpp"
#include "Classes/HashTable.hpp"
#include "Classes/HealthBar.hpp"
#include "Classes/HealthInfo.hpp"

Binary file not shown.