Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
IUpdater.hpp
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 30.03.17.
3 //
4 
5 #ifndef RECAST_TEMPERATUREWORLDUPDATER_H
6 #define RECAST_TEMPERATUREWORLDUPDATER_H
7 
8 
13 class IUpdater {
14 public:
15  virtual ~IUpdater() noexcept = default;
16 
20  virtual void update() = 0;
21 };
22 
23 
24 #endif //RECAST_TEMPERATUREWORLDUPDATER_H
Definition: IUpdater.hpp:13
virtual ~IUpdater() noexcept=default
virtual void update()=0