Ejemplo n.º 1
0
        public GumpGradient(int x, int y, int width, int height, Direction45 dirTo, ColorGradient gradient)
        {
            _X = x;
            _Y = y;

            _Width  = width;
            _Height = height;

            _Direction = dirTo;
            _Gradient  = gradient;
        }
Ejemplo n.º 2
0
		public GumpGradient(int x, int y, int width, int height, Direction45 dirTo, ColorGradient gradient)
		{
			_X = x;
			_Y = y;

			_Width = width;
			_Height = height;

			_Direction = dirTo;
			_Gradient = gradient;
		}
Ejemplo n.º 3
0
 public virtual void AddGradient(int x, int y, int w, int h, Direction45 to, ColorGradient g)
 {
     Add(new GumpGradient(x, y, w, h, to, g));
 }