AlpacaLibrary/Include/Core/Classes/DynamicObject.hpp

22 lines
511 B
C++
Raw Normal View History

2018-01-09 15:25:29 +00:00
#ifndef DYNAMICOBJECT_HPP_INCLUDED
#define DYNAMICOBJECT_HPP_INCLUDED
#include "Renderable.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
class DynamicObject : public Renderable
{
public:
DynamicObject();
DynamicObject(const void* Obj);
DynamicObject(const DynamicObject& D);
static Class GetClass();
std::int32_t GetID() const;
std::int32_t GetOrientation() const;
std::int32_t GetType() const;
};
#endif // DYNAMICOBJECT_HPP_INCLUDED