コード例 #1
0
ファイル: MGRepeatForever.cs プロジェクト: koery/MiniWar
 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
                };
 }