diff options
Diffstat (limited to 'plugins/Skins/SkinLib/Position.h')
-rw-r--r-- | plugins/Skins/SkinLib/Position.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/Skins/SkinLib/Position.h b/plugins/Skins/SkinLib/Position.h new file mode 100644 index 0000000000..ed43a1ece3 --- /dev/null +++ b/plugins/Skins/SkinLib/Position.h @@ -0,0 +1,16 @@ +#ifndef __POSITION_H__
+# define __POSITION_H__
+
+
+struct Position
+{
+ int x;
+ int y;
+
+ Position();
+ Position(int x, int y);
+};
+
+
+
+#endif // __POSITION_H__
|