AlpacaLibrary/Include/Core/Classes/DynamicObject.hpp

25 lines
578 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>
2018-03-18 14:38:29 +00:00
namespace Internal
2018-01-09 15:25:29 +00:00
{
2018-03-18 14:38:29 +00:00
class DynamicObject : public Renderable
{
public:
DynamicObject();
DynamicObject(const void* Obj);
DynamicObject(const DynamicObject& D);
static Class GetClass();
2018-01-09 15:25:29 +00:00
2018-03-18 14:38:29 +00:00
std::int32_t GetID() const;
std::int32_t GetOrientation() const;
std::int32_t GetType() const;
};
}
2018-01-09 15:25:29 +00:00
#endif // DYNAMICOBJECT_HPP_INCLUDED