738de3151358ee637d712b4f4a27ff347f327458
[supertux.git] / anchor_points.hpp
1 #ifndef __ANCHOR_POINTS_HPP__
2 #define __ANCHOR_POINTS_HPP__
3
4 namespace Scripting {
5
6 // TODO get these from the definitions in anchor.h (needs miniswig update)
7 static const int ANCHOR_TOP         = 0x0010;
8 static const int ANCHOR_BOTTOM      = 0x0020;
9 static const int ANCHOR_LEFT        = 0x0001;
10 static const int ANCHOR_RIGHT       = 0x0002;
11 static const int ANCHOR_MIDDLE      = 0x0000;
12 static const int ANCHOR_TOP_LEFT    = 0x0011;
13 static const int ANCHOR_TOP_RIGHT   = 0x0012;
14 static const int ANCHOR_BOTTOM_LEFT = 0x0021;
15 static const int ANCHOR_BOTTOM_RIGHT = 0x0022;
16
17 }
18
19 #endif
20