public override global::System.Object scale(global::java.lang.Object n1, int n2, int n3)
 {
     XNAImage x = (XNAImage)n1;
     XNAImage newX = new XNAImage();
     newX.image = x.image;
     newX.Width = n2;
     newX.Height = n3;
     return newX;
 }
 public DrawImage(int x, int y, int w, int h, XNAImage img, int alpha)
 {
     this.alpha = alpha;
     this.x = x;
     this.y = y;
     this.w = w;
     this.h = h;
     this.img = img;
 }