AlpacaLibrary/Include/Core/Classes/Animation.hpp

34 lines
907 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>
2018-03-18 14:38:29 +00:00
namespace Internal
2017-12-25 23:49:48 +00:00
{
2018-03-18 14:38:29 +00:00
class Animation : public CacheableNode
{
public:
Animation(const void* Obj);
2018-12-27 18:17:09 +00:00
Animation() = default;
Animation(Animation&& Obj) = default;
Animation(const Animation& Obj) = default;
Animation& operator=(Animation&& Obj) = default;
Animation& operator=(const Animation& Obj) = default;
2018-03-18 14:38:29 +00:00
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::vector<std::int32_t> GetFrameIDs() const;
std::vector<std::int32_t> GetInterleave() const;
std::int32_t GetLeftHandItem() const;
2023-08-26 22:00:25 +00:00
std::int32_t GetModelID() const;
2018-03-18 14:38:29 +00:00
std::int32_t GetRightHandItem() const;
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
};
}
2017-12-25 23:49:48 +00:00
#endif // ANIMATION_HPP_INCLUDED