AlpacaLibrary/Include/Core/Classes/GroundObject.hpp

35 lines
943 B
C++
Raw Permalink Normal View History

2018-01-09 15:25:29 +00:00
#ifndef GROUNDOBJECT_HPP_INCLUDED
#define GROUNDOBJECT_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 GroundObject : public Object
{
public:
GroundObject(const void* Obj);
2018-12-27 18:17:09 +00:00
GroundObject() = default;
GroundObject(GroundObject&& Obj) = default;
GroundObject(const GroundObject& Obj) = default;
GroundObject& operator=(GroundObject&& Obj) = default;
GroundObject& operator=(const GroundObject& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-05-10 14:03:33 +00:00
std::int64_t GetHash() const;
2018-03-18 14:38:29 +00:00
std::int32_t GetRenderInfo() 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 // GROUNDOBJECT_HPP_INCLUDED