Should have been in the last commit.

This commit is contained in:
Faerbit 2015-04-25 22:42:44 +02:00
parent 9b89007674
commit faf19aa424
2 changed files with 0 additions and 8 deletions

View File

@ -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);

View File

@ -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();