BBGamelib.CCActionInterval.copy C# (CSharp) Method

copy() public method

public copy ( ) : CCActionInterval
return CCActionInterval
		public new CCActionInterval copy (){
			return (CCActionInterval)copyImpl();
		}
	}

Usage Example

Beispiel #1
0
        protected override CCAction copyImpl()
        {
            CCRepeatForever copy = new CCRepeatForever(_innerAction.copy());

            return(copy);
        }
All Usage Examples Of BBGamelib.CCActionInterval::copy