コード例 #1
0
ファイル: TribeJob.cs プロジェクト: Rakjavik/EmergenceOfRak
 public TribeJob(JobTasks task, Thing.Thing_Types type, Tribe tribe)
 {
     this.tribe      = tribe;
     this.task       = task;
     this.targetType = type;
     actions         = JobAction.GetActionsForTask(task, this);
     currentAction   = 0;
 }
コード例 #2
0
ファイル: TribeJob.cs プロジェクト: Rakjavik/EmergenceOfRak
 public TribeJob(JobTasks task, Thing target, Tribe tribe)
 {
     this.tribe    = tribe;
     this.task     = task;
     this.target   = target;
     actions       = JobAction.GetActionsForTask(task, this);
     currentAction = 0;
 }