BBGamelib.CCActionInterval.copy C# (CSharp) Метод

copy() публичный Метод

public copy ( ) : CCActionInterval
Результат CCActionInterval
		public new CCActionInterval copy (){
			return (CCActionInterval)copyImpl();
		}
	}

Usage Example

Пример #1
0
        protected override CCAction copyImpl()
        {
            CCRepeatForever copy = new CCRepeatForever(_innerAction.copy());

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