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