AlpacaLibrary/Include/Core/Classes/Model.hpp

33 lines
941 B
C++

#ifndef MODEL_HPP_INCLUDED
#define MODEL_HPP_INCLUDED
#include "Renderable.hpp"
#include "../JavaClass/Class.hpp"
#include <vector>
#include <cstdint>
namespace Internal
{
class Model : public Renderable
{
public:
Model();
Model(const void* Obj);
Model(const Model& M);
static Class GetClass();
std::vector<std::vector<std::int32_t>> GetFrameMapIndices() const;
std::vector<std::int32_t> GetIndicesA() const;
std::vector<std::int32_t> GetIndicesB() const;
std::vector<std::int32_t> GetIndicesC() const;
std::int32_t GetIndicesLength() const;
std::int32_t GetVerticesLength() const;
std::vector<std::int32_t> GetVerticesX() const;
std::vector<std::int32_t> GetVerticesY() const;
std::vector<std::int32_t> GetVerticesZ() const;
};
}
#endif // MODEL_HPP_INCLUDED