aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/rectangle.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-05-18 19:56:58 +0100
committerYann Herklotz <ymherklotz@gmail.com>2018-05-18 19:56:58 +0100
commit41d0c68c9fadea552002613f0f62433c3858d0a2 (patch)
tree32fe3c8615c0226e38ae3faea52412a7ada8d0b8 /yage/render/rectangle.h
parent5c4c0ca30911b5129b32142b430bb6be1baf0e47 (diff)
downloadYAGE-41d0c68c9fadea552002613f0f62433c3858d0a2.tar.gz
YAGE-41d0c68c9fadea552002613f0f62433c3858d0a2.zip
Deleting and cleaning up repository
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