summaryrefslogtreecommitdiffstats
path: root/src/RendererEntity.hpp
blob: 7f42f7dd1683e7779b40d879aa7668c7428327f3 (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, World *world);

    static GLuint GetVao();
};