aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/shape.h
diff options
context:
space:
mode:
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