Roguelike
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
integer2Dutils.h
Go to the documentation of this file.
1 #ifndef ROGUELIKE_INTEGER2DUTILS_H_
2 #define ROGUELIKE_INTEGER2DUTILS_H_
3 
4 #include <ugdk/math/frame.h>
5 #include <ugdk/math/integer2D.h>
6 
7 namespace ugdk {
8 namespace math {
9 
10 bool operator==(const Integer2D& lhs, const Integer2D& rhs);
11 bool operator<(const Integer2D& lhs, const Integer2D& rhs);
12 
13 } // namespace math
14 
15 bool operator<(const Frame& lhs, const Frame& rhs);
16 
17 } // namespace ugdk
18 
19 #endif /* ROGUELIKE_INTEGER2DUTILS_H_ */
Definition: integer2Dutils.cc:4
bool operator<(const Integer2D &lhs, const Integer2D &rhs)
Definition: integer2Dutils.cc:11
bool operator<(const Frame &lhs, const Frame &rhs)
Definition: integer2Dutils.cc:18
bool operator==(const Integer2D &lhs, const Integer2D &rhs)
Definition: integer2Dutils.cc:7