コード例 #1
0
ファイル: ActionLocker.cs プロジェクト: cout00/poebot
 public static void Wait(this ActionLockerFactory self, int ms)
 {
     self.Execute(new ActionWaitParameter()
     {
         Interval = ms
     }, typeof(ActionWait));
 }
コード例 #2
0
ファイル: ActionLocker.cs プロジェクト: cout00/poebot
 public ActionLockerFactory(ILogger logger)
 {
     factory     = this;
     this.logger = logger;
 }