Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Temperature.hpp
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 30.03.17.
3 //
4 
5 #ifndef RECAST_TEMPERATURE_H
6 #define RECAST_TEMPERATURE_H
7 
8 
9 #include "GenericScalar.hpp"
10 
15 struct Temperature : public GenericScalar<int> {
16 public:
17  Temperature(int value = 0) : GenericScalar(value) {
18  }
19 };
20 
21 
22 #endif //RECAST_TEMPERATURE_H
Temperature(int value=0)
Definition: Temperature.hpp:17
Definition: Temperature.hpp:15
Definition: GenericScalar.hpp:15