aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/shape.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/shape.h
parent5c4c0ca30911b5129b32142b430bb6be1baf0e47 (diff)
downloadYAGE-41d0c68c9fadea552002613f0f62433c3858d0a2.tar.gz
YAGE-41d0c68c9fadea552002613f0f62433c3858d0a2.zip
Deleting and cleaning up repository
Diffstat (limited to 'yage/render/shape.h')
-rw-r--r--yage/render/shape.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/yage/render/shape.h b/yage/render/shape.h
deleted file mode 100644
index 0ac72ba8..00000000
--- a/yage/render/shape.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/** ---------------------------------------------------------------------------
- * @file: shape.h
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#ifndef YAGE_RENDER_SHAPE_H
-#define YAGE_RENDER_SHAPE_H
-
-#include "drawable.h"
-
-namespace yage
-{
-
-class Shape : public Drawable
-{
-public:
- virtual void render() const;
-};
-
-} // namespace yage
-
-#endif