AlpacaLibrary/Include/Core/Classes/Frames.hpp

22 lines
412 B
C++

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