summaryrefslogtreecommitdiffstats
path: root/src/RendererEntity.hpp
blob: 2c629562cd7449536ec94c44e4659c0fe276bf96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "Gal.hpp"

class World;

class RendererEntity {
    unsigned int entityId;
public:
    RendererEntity(unsigned int id);

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