AlpacaLibrary/Include/Core/Classes/WallObject.hpp

32 lines
790 B
C++
Raw Normal View History

2018-01-09 15:25:29 +00:00
#ifndef WALLOBJECT_HPP_INCLUDED
#define WALLOBJECT_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 WallObject : public Object
{
public:
WallObject();
WallObject(const void* Obj);
WallObject(const WallObject& W);
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;
2018-05-10 14:03:33 +00:00
std::int64_t GetHash() const;
2018-03-18 14:38:29 +00:00
std::int32_t GetHeight() const;
Renderable GetRenderable() const;
std::int32_t GetX() const;
std::int32_t GetY() const;
2018-04-15 05:08:42 +00:00
std::int32_t GetZ() 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 // WALLOBJECT_HPP_INCLUDED