YAGE  v0.1.4.0
Yet Another Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
drawable.h
Go to the documentation of this file.
1 #ifndef YAGE_CORE_DRAWABLE_H
2 #define YAGE_CORE_DRAWABLE_H
3 
4 #include "spritebatch.h"
5 
6 namespace yage
7 {
8 
9 class Drawable
10 {
11 public:
12  virtual void draw(SpriteBatch &sp) = 0;
13 };
14 
15 } // namespace yage
16 
17 #endif
Definition: spritebatch.h:59
Definition: drawable.h:9
virtual void draw(SpriteBatch &sp)=0