Esempio n. 1
0
		public GumpLine(int x, int y, Angle angle, int length, Color color, int size)
		{
			_Rotation = angle;
			_Length = length;

			_X1 = x;
			_Y1 = y;

			_Rotation.Transform(ref x, ref y, _Length);

			_X2 = x;
			_Y2 = y;

			_Color = color;
			_Size = size;
		}