AlpacaLibrary/Include/Core/Classes/Renderable.hpp

29 lines
686 B
C++
Raw Permalink 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>
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 Renderable : public CacheableNode
{
public:
Renderable(const void* Obj);
2018-12-27 18:17:09 +00:00
Renderable() = default;
Renderable(Renderable&& Obj) = default;
Renderable(const Renderable& Obj) = default;
Renderable& operator=(Renderable&& Obj) = default;
Renderable& operator=(const Renderable& 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::int32_t GetModelHeight() 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 // RENDERABLE_HPP_INCLUDED