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