AlpacaLibrary/Include/Core/Classes/GroundObject.hpp

27 lines
649 B
C++
Raw 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-01-09 15:25:29 +00:00
class GroundObject : public Object
2017-12-25 23:49:48 +00:00
{
public:
2018-01-09 15:25:29 +00:00
GroundObject();
GroundObject(const void* Obj);
GroundObject(const GroundObject& G);
2017-12-25 23:49:48 +00:00
static Class GetClass();
std::int32_t GetHash() const;
std::int32_t GetPlane() const;
std::int32_t GetRenderInfo() const;
Renderable GetRenderable() const;
std::int32_t GetX() const;
std::int32_t GetY() const;
};
2018-01-09 15:25:29 +00:00
#endif // GROUNDOBJECT_HPP_INCLUDED