From faf19aa4241876d4ed63ae5cb2ac718a28541578 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Sat, 25 Apr 2015 22:42:44 +0200 Subject: [PATCH] Should have been in the last commit. --- game/graphics.hh | 4 ---- game/level.hh | 4 ---- 2 files changed, 8 deletions(-) diff --git a/game/graphics.hh b/game/graphics.hh index 5a54e27..3808657 100644 --- a/game/graphics.hh +++ b/game/graphics.hh @@ -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); diff --git a/game/level.hh b/game/level.hh index b1a4855..b28a24b 100644 --- a/game/level.hh +++ b/game/level.hh @@ -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();