AlpacaLibrary/Include/Core/Classes/Frames.hpp

31 lines
708 B
C++

#ifndef FRAMES_HPP_INCLUDED
#define FRAMES_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include "Frame.hpp"
namespace Internal
{
class Frames : public CacheableNode
{
public:
Frames(const void* Obj);
Frames() = default;
Frames(Frames&& Obj) = default;
Frames(const Frames& Obj) = default;
Frames& operator=(Frames&& Obj) = default;
Frames& operator=(const Frames& Obj) = default;
static Class GetClass();
std::vector<Frame> GetSkeletons() const;
Frame GetSkeletons(std::int32_t I) const;
};
}
#endif // FRAMES_HPP_INCLUDED