示例#1
0
        public static CCActionRepeatForever Create(ActionInterval action)
        {
            CCActionRepeatForever ret = new CCActionRepeatForever();

            if (ret.InitWithAction(action))
            {
                return(ret);
            }
            return(null);
        }
示例#2
0
 public static ActionInterval CCRepeatForever(ActionInterval action)
 {
     return(CCActionRepeatForever.Create(action));
 }