BBGamelib.CCActionManager.removeAllActions C# (CSharp) Method

removeAllActions() public method

public removeAllActions ( ) : void
return void
		public void removeAllActions(){
			for (int i=_targets.Count - 1; i>=0; i--) {
				KeyValuePair<int, tHashElement> keyValue = _targets.ElementAt(i);
				removeAllActionsFromTarget(keyValue.Value.target);
			}
		}
		public void removeAllActionsFromTarget (System.Object target){