Kochol Game Engine  0.1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
plane.h
Go to the documentation of this file.
1 #ifndef KGE_PLANE_H
2 #define KGE_PLANE_H
3 
4 namespace kge
5 {
6  namespace ph
7  {
8  class Plane
9  {
10  public:
12  Plane() { /* Nothing to do */ }
13 
15  virtual ~Plane() { /* Nothing to do */ }
16 
17  protected:
18 
19  }; // class Plane
20  } // ph
21 } // kge
22 
23 #endif