#ifndef GRAPHICSOBJECT_HPP_INCLUDED #define GRAPHICSOBJECT_HPP_INCLUDED #include "Renderable.hpp" #include "../JavaClass/Class.hpp" #include "Animation.hpp" #include namespace Internal { class GraphicsObject : public Renderable { public: GraphicsObject(); GraphicsObject(const void* Obj); GraphicsObject(const GraphicsObject& G); static Class GetClass(); Animation GetAnimation() const; std::int32_t GetAnimationFrame() const; bool GetFinished() const; std::int32_t GetHeight() const; std::int32_t GetID() const; std::int32_t GetPlane() const; std::int32_t GetX() const; std::int32_t GetY() const; }; } #endif // GRAPHICSOBJECT_HPP_INCLUDED