예제 #1
0
파일: CozyRepeat.cs 프로젝트: xxy1991/cozy
 public override object Clone()
 {
     var a = new CozyRepeat();
     var act = InnerAction.Clone() as CozyFiniteTimeAction;
     a.InitWithAction(act, Times);
     return a;
 }
예제 #2
0
        public static CozyRepeat Create(CozyFiniteTimeAction action, uint times)
        {
            var act = new CozyRepeat();

            act.InitWithAction(action, times);
            return(act);
        }
예제 #3
0
        public override object Clone()
        {
            var a   = new CozyRepeat();
            var act = InnerAction.Clone() as CozyFiniteTimeAction;

            a.InitWithAction(act, Times);
            return(a);
        }
예제 #4
0
파일: CozyRepeat.cs 프로젝트: xxy1991/cozy
 public static CozyRepeat Create(CozyFiniteTimeAction action, uint times)
 {
     var act = new CozyRepeat();
     act.InitWithAction(action, times);
     return act;
 }