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