Category5.Animation.Copy C# (CSharp) 메소드

Copy() 공개 메소드

public Copy ( ) : Animation
리턴 Animation
        public Animation Copy()
        {
            //return (Animation)MemberwiseClone();
            return new Animation(this.texture, this.frameWidth, this.frameHeight, this.timeBetweenFrames);
        }