BBGamelib.CCTargetedAction.CCTargetedAction C# (CSharp) Method

CCTargetedAction() public method

public CCTargetedAction ( System target, CCActionFiniteTime action ) : UnityEngine
target System
action CCActionFiniteTime
return UnityEngine
		public CCTargetedAction(System.Object target, CCActionFiniteTime action){
			NSUtils.Assert (target != null, "CCTargetedAction: target should not be null");
			NSUtils.Assert (action != null, "CCTargetedAction: action should not be null");
			initWithTarget (target, action);	
		}
		/** Init an action with the specified action and forced target */