MegaMan.Engine.StateComponent.Clone C# (CSharp) 메소드

Clone() 공개 메소드

public Clone ( ) : MegaMan.Engine.Component
리턴 MegaMan.Engine.Component
        public override Component Clone()
        {
            StateComponent newone = new StateComponent {states = this.states};

            // notice the shallow copy!

            return newone;
        }