public static CCActionRepeatForever Create(ActionInterval action) { CCActionRepeatForever ret = new CCActionRepeatForever(); if (ret.InitWithAction(action)) { return(ret); } return(null); }
public static ActionInterval CCRepeatForever(ActionInterval action) { return(CCActionRepeatForever.Create(action)); }