Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
ITemperatureWorldChunkableMutable.hpp
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 18.06.17.
3 //
4 
5 #ifndef RECAST_ITEMPERATUREWORLDCHUNKABLEMUTABLE_H
6 #define RECAST_ITEMPERATUREWORLDCHUNKABLEMUTABLE_H
7 
8 
9 #include "../types/Coord.hpp"
11 
17 public:
23  virtual void addChunk(std::shared_ptr<ITemperatureWorldBoundable<ITemperatureWorld>> chunk) = 0;
24 
30  virtual void removeChunk(std::shared_ptr<ITemperatureWorldBoundable<ITemperatureWorld>> chunk) = 0;
31 };
32 
39 template<typename T>
41 };
42 
43 
44 #endif //RECAST_ITEMPERATUREWORLDCHUNKABLEMUTABLE_H
Definition: ITemperatureWorldChunkableMutable.hpp:40
virtual void removeChunk(std::shared_ptr< ITemperatureWorldBoundable< ITemperatureWorld >> chunk)=0
virtual void addChunk(std::shared_ptr< ITemperatureWorldBoundable< ITemperatureWorld >> chunk)=0
Definition: ITemperatureWorldChunkableMutable.hpp:16