AlpacaLibrary/Include/Core/Classes/Frame.hpp

37 lines
974 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>
2023-08-26 22:00:25 +00:00
#include "Skin.hpp"
2017-12-25 23:49:48 +00:00
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(const void* Obj);
2018-12-27 18:17:09 +00:00
Frame() = default;
Frame(Frame&& Obj) = default;
Frame(const Frame& Obj) = default;
Frame& operator=(Frame&& Obj) = default;
Frame& operator=(const Frame& 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<std::int32_t> GetIndices() const;
bool GetShowing() const;
2023-08-26 22:00:25 +00:00
Skin GetSkin() const;
2018-03-18 14:38:29 +00:00
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