AlpacaLibrary/Include/Core/Classes/DecorativeObject.hpp

34 lines
936 B
C++
Raw Normal View History

2018-01-09 15:25:29 +00:00
#ifndef DECORATIVEOBJECT_HPP_INCLUDED
#define DECORATIVEOBJECT_HPP_INCLUDED
2017-12-25 23:49:48 +00:00
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
#include "Renderable.hpp"
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class DecorativeObject : public Object
{
public:
DecorativeObject();
DecorativeObject(const void* Obj);
DecorativeObject(const DecorativeObject& D);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetAngle() const;
std::int32_t GetFlags() const;
std::int32_t GetHash() const;
std::int32_t GetOffsetX() const;
std::int32_t GetOffsetY() const;
std::int32_t GetPlane() const;
std::int32_t GetRenderInfo() const;
Renderable GetRenderable() const;
std::int32_t GetX() const;
std::int32_t GetY() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
2018-01-09 15:25:29 +00:00
#endif // DECORATIVEOBJECT_HPP_INCLUDED