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