Esempio n. 1
0
 public AnimationFrame(AnimationFrame nextFrame, Point origin, Point size)
 {
     this.nextFrame = nextFrame;
     this.origin = origin;
     this.size = size;
 }
Esempio n. 2
0
 public AnimationFrame()
     : this(null, Point.Zero, Point.Zero)
 {
     //
     nextFrame = this;
 }