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