コード例 #1
0
ファイル: Autopilot.cs プロジェクト: fx89/spaceengineers
 public FlightAssistantBuilder withFeature(IFlightAssistantFeature feature)
 {
     if (feature != null)
     {
         flightAssistant.getFeatures().Add(new FlightAssistantFeatureWrapper(feature));
     }
     return(this);
 }
コード例 #2
0
ファイル: Autopilot.cs プロジェクト: fx89/spaceengineers
 public FlightAssistantFeatureWrapper(IFlightAssistantFeature feature)
 {
     this.feature = feature;
 }