AlpacaLibrary/Include/Core/Classes/Frame.hpp

32 lines
805 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef FRAME_HPP_INCLUDED
#define FRAME_HPP_INCLUDED
#include "../JavaClass/Object.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
#include "FrameMap.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 Frame : public Object
{
public:
Frame();
Frame(const void* Obj);
Frame(const Frame& F);
static Class GetClass();
2017-12-25 23:49:48 +00:00
2018-03-18 14:38:29 +00:00
std::vector<std::int32_t> GetIndices() const;
bool GetShowing() const;
FrameMap GetSkin() const;
std::vector<std::int32_t> GetTranslatorX() const;
std::vector<std::int32_t> GetTranslatorY() const;
std::vector<std::int32_t> GetTranslatorZ() const;
std::int32_t GetTranslatorsLength() 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 // FRAME_HPP_INCLUDED