summaryrefslogtreecommitdiffstats
path: root/src/RendererEntity.hpp
blob: 51d41636303f8805b11803838085ba11420f8e00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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);    

    GLint modelLoc = 0;
    GLint colorLoc = 0;

    static GLuint GetVao();
};