Exemplo n.º 1
0
 public bool Equals(LinearFrameAnimation other)
 {
     return(other.firstFrame == this.firstFrame && other.length == this.length &&
            other.loopType == this.loopType);
 }
Exemplo n.º 2
0
 public LinearFrameAnimation(LinearFrameAnimation copy) : this(copy.firstFrame, copy.length, copy.loopType)
 {
 }