コード例 #1
0
 public HTask(HTaskType type, HClient client = null, params object[] args)
 {
     Type    = (int)type;
     _client = client;
     _args   = args;
 }
コード例 #2
0
ファイル: HTaskProcessor.cs プロジェクト: acid1789/Happiness
 public HTask(HTaskType type, HClient client = null, object args = null)
 {
     Type = (int)type;
     _client = client;
     _args = args;
 }