AlpacaLibrary/Include/Core/Classes/Animation.hpp

25 lines
590 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef ANIMATION_HPP_INCLUDED
#define ANIMATION_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
class Animation : public CacheableNode
{
public:
Animation();
Animation(const void* Obj);
Animation(const Animation& A);
static Class GetClass();
std::vector<std::int32_t> GetFrameIDs() const;
std::vector<std::int32_t> GetInterleave() const;
std::int32_t GetLeftHandItem() const;
std::int32_t GetRightHandItem() const;
};
#endif // ANIMATION_HPP_INCLUDED