AlpacaLibrary/Include/Core/Classes/Frames.hpp

31 lines
708 B
C++
Raw Permalink Normal View History

2017-12-25 23:49:48 +00:00
#ifndef FRAMES_HPP_INCLUDED
#define FRAMES_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include "Frame.hpp"
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 Frames : public CacheableNode
{
public:
Frames(const void* Obj);
2018-12-27 18:17:09 +00:00
Frames() = default;
Frames(Frames&& Obj) = default;
Frames(const Frames& Obj) = default;
Frames& operator=(Frames&& Obj) = default;
Frames& operator=(const Frames& 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<Frame> GetSkeletons() const;
2018-03-22 01:15:01 +00:00
Frame GetSkeletons(std::int32_t I) 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 // FRAMES_HPP_INCLUDED