blob: 346f9fb462ce92782da91d3063e29d5b8fca007c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#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();
};
|