#ifndef ANIMATION_HPP_INCLUDED #define ANIMATION_HPP_INCLUDED #include "CacheableNode.hpp" #include "../JavaClass/Class.hpp" #include #include class Animation : public CacheableNode { public: Animation(); Animation(const void* Obj); Animation(const Animation& A); static Class GetClass(); std::vector GetFrameIDs() const; std::vector GetInterleave() const; std::int32_t GetLeftHandItem() const; std::int32_t GetRightHandItem() const; }; #endif // ANIMATION_HPP_INCLUDED