Esempio n. 1
0
 public override object Clone()
 {
     var a = new CozyRepeat();
     var act = InnerAction.Clone() as CozyFiniteTimeAction;
     a.InitWithAction(act, Times);
     return a;
 }
Esempio n. 2
0
        public static CozyRepeat Create(CozyFiniteTimeAction action, uint times)
        {
            var act = new CozyRepeat();

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

            a.InitWithAction(act, Times);
            return(a);
        }
Esempio n. 4
0
 public static CozyRepeat Create(CozyFiniteTimeAction action, uint times)
 {
     var act = new CozyRepeat();
     act.InitWithAction(action, times);
     return act;
 }