aboutsummaryrefslogtreecommitdiffstats
path: root/yage/render/drawable.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/render/drawable.h')
-rw-r--r--yage/render/drawable.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/yage/render/drawable.h b/yage/render/drawable.h
deleted file mode 100644
index 774aa451..00000000
--- a/yage/render/drawable.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/** ---------------------------------------------------------------------------
- * @file: drawable.h
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
- * MIT License, see LICENSE file for more details.
- * ----------------------------------------------------------------------------
- */
-
-#ifndef YAGE_CORE_DRAWABLE_H
-#define YAGE_CORE_DRAWABLE_H
-
-#include "spritebatch.h"
-
-namespace yage
-{
-
-class Drawable
-{
-public:
- virtual void draw(SpriteBatch &sp) = 0;
-};
-
-} // namespace yage
-
-#endif