AlpacaLibrary/Include/Core/Classes/Model.hpp

33 lines
941 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef MODEL_HPP_INCLUDED
#define MODEL_HPP_INCLUDED
#include "Renderable.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 Model : public Renderable
{
public:
Model();
Model(const void* Obj);
Model(const Model& M);
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>> 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;
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 // MODEL_HPP_INCLUDED