Should have been in the last commit.
This commit is contained in:
parent
9b89007674
commit
faf19aa424
@ -16,10 +16,6 @@ class Graphics {
|
||||
Graphics(glm::uvec2 windowSize, float nearPlane, float farPlane, int cube_size,
|
||||
unsigned int maxShadowRenderCount, std::string screenPath,
|
||||
std::string screenContinuePath);
|
||||
Graphics(const Graphics &other);
|
||||
Graphics(Graphics &&other);
|
||||
Graphics& operator= (const Graphics &other);
|
||||
Graphics& operator= (Graphics &&other);
|
||||
Graphics();
|
||||
void init(Level* level);
|
||||
void render(double time);
|
||||
|
@ -27,10 +27,6 @@ class Graphics;
|
||||
class Level {
|
||||
public:
|
||||
Level(std::string xmlFilePath);
|
||||
Level(const Level &other);
|
||||
Level(const Level &&other);
|
||||
Level& operator=(const Level &other);
|
||||
Level& operator=(const Level &&other);
|
||||
Level();
|
||||
~Level();
|
||||
void load();
|
||||
|
Loading…
Reference in New Issue
Block a user