summaryrefslogblamecommitdiffstats
path: root/src/RendererEntity.hpp
blob: 346f9fb462ce92782da91d3063e29d5b8fca007c (plain) (tree)
1
2
3
4
5
6
7
8
9

            
                    
 
                  
            
 
                      
                          
       
                                    

                      
                                                              


                           
#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();
};