Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
ITemperatureWorldScalable.hpp
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 18.06.17.
3 //
4 
5 #ifndef RECAST_ISCALABLETEMPERATUREWORLD_H
6 #define RECAST_ISCALABLETEMPERATUREWORLD_H
7 
8 
9 #include "../types/IntScaleParallelepiped.hpp"
10 
16 public:
20  virtual IntScaleParallelepiped cellScale() const noexcept = 0;
21 };
22 
29 template<typename T>
30 class ITemperatureWorldScalable : public virtual T, public virtual ITemperatureWorldScalableMixin {
31 };
32 
33 
34 #endif //RECAST_ISCALABLETEMPERATUREWORLD_H
virtual IntScaleParallelepiped cellScale() const noexcept=0
Definition: IntScaleParallelepiped.hpp:16
Definition: ITemperatureWorldScalable.hpp:30
Definition: ITemperatureWorldScalable.hpp:15