예제 #1
0
 public static MGRepeatForever Actions(MGAction action)
 {
     return new MGRepeatForever
                {
                    Action = action
                };
 }
예제 #2
0
파일: MGRepeat.cs 프로젝트: koery/MiniWar
 public static MGRepeat Actions(MGAction action, int t)
 {
     return new MGRepeat
                {
                    Action = action,
                    _duration = t*action.Duration
                };
 }