public override BaseGump Clone() { BackgroundGump b = new BackgroundGump(); b.images = new Bitmap[9]; for (int i = 0; i < images.Length; i++) { b.images[i] = (Bitmap)images[i].Clone(); } return(base.Clone(b)); }
public override BaseGump Clone() { BackgroundGump b = new BackgroundGump(); b.images = new Bitmap[9]; for( int i = 0; i < images.Length; i++ ) b.images[i] = (Bitmap)images[i].Clone(); return base.Clone(b); }