summaryrefslogtreecommitdiff
path: root/plugins/Skins/SkinLib/Position.h
blob: ed43a1ece38b737c117433ab36b7fe4ca5b8b1bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __POSITION_H__
# define __POSITION_H__


struct Position
{
	int x;
	int y;

	Position();
	Position(int x, int y);
};



#endif // __POSITION_H__