blob: e2e8bf1e279b03d60ed0cb542db0eed3a35b4e14 (
plain) (
tree)
|
|
#pragma once
#include <GL/glew.h>
class World;
class RenderState;
class RendererEntity {
unsigned int entityId;
World *world;
public:
RendererEntity(World *ptr, unsigned int id);
~RendererEntity();
void Render(RenderState& renderState);
static GLuint GetVao();
};
|