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

            
                  
 
            
 
                      
                          
                                            
       
                                    
 
                                                                             
  
#pragma once

#include "Gal.hpp"

class World;

class RendererEntity {
    unsigned int entityId;
    std::shared_ptr<Gal::Pipeline> pipeline;
public:
    RendererEntity(unsigned int id);

    void Render(std::shared_ptr<Gal::Pipeline> pipeline, const World *world);
};