This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
20 lines
480 B
C++
20 lines
480 B
C++
#pragma once
|
|
#include "EntityRenderer.h"
|
|
|
|
class Painting;
|
|
class Random;
|
|
|
|
class PaintingRenderer : public EntityRenderer
|
|
{
|
|
private:
|
|
Random *random;
|
|
|
|
public:
|
|
PaintingRenderer(); // 4J -added
|
|
virtual void render(std::shared_ptr<Entity> _painting, double x, double y, double z, float rot, float a);
|
|
|
|
private:
|
|
void renderPainting(std::shared_ptr<Painting> painting, int w, int h, int uo, int vo);
|
|
void setBrightness(std::shared_ptr<Painting> painting, float ss, float ya);
|
|
};
|