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 
9 #ifndef YAGE_RENDER_SHAPE_H
10 #define YAGE_RENDER_SHAPE_H
11 
12 #include "drawable.h"
13 
14 namespace yage
15 {
16 
17 class Shape : public Drawable
18 {
19 public:
20  virtual void render() const;
21 };
22 
23 } // namespace yage
24 
25 #endif
Definition: shape.h:17
virtual void render() const
Definition: drawable.h:17