YAPOG  0.0.1
Yet Another Pokemon Online Game
IUpdateable.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_IUPDATEABLE_HPP
2 # define YAPOG_IUPDATEABLE_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 
7 namespace yap
8 {
11  {
12  virtual ~IUpdateable () {}
13 
16  virtual void Update (const Time& dt) = 0;
17  };
18 } // namespace yap
19 
20 #endif // YAPOG_IUPDATEABLE_HPP