예제 #1
0
 public Production(ProductionInfo info)
 {
     Info = info;
 }
예제 #2
0
파일: Production.cs 프로젝트: wytsep/OpenRA
 public Production(ProductionInfo info, Actor self)
 {
     Info = info;
     rp   = Exts.Lazy(() => self.IsDead() ? null : self.TraitOrDefault <RallyPoint>());
 }