AlpacaLibrary/Include/Core/Classes/Renderable.hpp

21 lines
420 B
C++
Raw Normal View History

2017-12-25 23:49:48 +00:00
#ifndef RENDERABLE_HPP_INCLUDED
#define RENDERABLE_HPP_INCLUDED
#include "CacheableNode.hpp"
#include "../JavaClass/Class.hpp"
#include <cstdint>
class Renderable : public CacheableNode
{
public:
Renderable();
Renderable(const void* Obj);
Renderable(const Renderable& R);
static Class GetClass();
std::int32_t GetModelHeight() const;
};
#endif // RENDERABLE_HPP_INCLUDED