AlpacaLibrary/Include/Core/Classes/FrameMap.hpp

26 lines
538 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef FRAMEMAP_HPP_INCLUDED
#define FRAMEMAP_HPP_INCLUDED
#include "Node.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 FrameMap : public Node
{
public:
FrameMap();
FrameMap(const void* Obj);
FrameMap(const FrameMap& F);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::vector<std::vector<std::int32_t>> GetList() const;
std::vector<std::int32_t> GetTypes() 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 // FRAMEMAP_HPP_INCLUDED