File size: 121 Bytes
24b81cb
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
class Vector2
{	
	void Vector2(float value_x, float value_y)
	{
		x = value_x;
		y = value_y;
	}
	
	float x;
	float y;
};