YAPOG  0.0.1
Yet Another Pokemon Online Game
ISpatial3.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_ISPATIAL3_HPP
2 # define YAPOG_ISPATIAL3_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
10  struct ISpatial3 : public ISpatial
11  {
12  virtual ~ISpatial3 () {}
13 
16  virtual const int& GetZ () const = 0;
19  virtual void SetZ (int z) = 0;
20 
23  virtual const int& GetH () const = 0;
26  virtual void SetH (int h) = 0;
27  };
28 } // namespace yap
29 
30 #endif // YAPOG_ISPATIAL3_HPP