MegaMan.Engine.PositionComponent.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : MegaMan.Engine.Component
return MegaMan.Engine.Component
        public override Component Clone()
        {
            PositionComponent copy = new PositionComponent {PersistOffScreen = this.PersistOffScreen};
            return copy;
        }