aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/rectangle.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/render/rectangle.h')
-rw-r--r--yage/render/rectangle.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/yage/render/rectangle.h b/yage/render/rectangle.h
deleted file mode 100644
index bf87731b..00000000
--- a/yage/render/rectangle.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/** ---------------------------------------------------------------------------
- * @file: rectangle.h
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#ifndef YAGE_RENDER_RECTANGLE_H
-#define YAGE_RENDER_RECTANGLE_H
-
-#include "shape.h"
-
-#include <glm/glm.hpp>
-
-namespace yage
-{
-
-class Rectangle : public Shape
-{
-public:
- Rectangle(glm::vec4 position);
- virtual void render() const;
-
-private:
- glm::vec4 position_;
-};
-
-} // namespace yage
-
-#endif