AlpacaLibrary/Include/Core/Classes/GroundObject.hpp

30 lines
728 B
C++

#ifndef GROUNDOBJECT_HPP_INCLUDED
#define GROUNDOBJECT_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
#include "Renderable.hpp"
namespace Internal
{
class GroundObject : public Object
{
public:
GroundObject();
GroundObject(const void* Obj);
GroundObject(const GroundObject& G);
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;
};
}
#endif // GROUNDOBJECT_HPP_INCLUDED