Inheritance: withSIX.Mini.Core.Games.GameSettingsWithConfigurablePackageDirectory
Beispiel #1
0
 protected RealVirtualityGame(Guid id, RealVirtualityGameSettings settings) : base(id, settings)
 {
     ProfileInfo = this.GetMetaData <RvProfileInfoAttribute>();
     _shouldLaunchAsDedicatedServer = new Lazy <bool>(() => {
         var casted = Settings as ILaunchAsDedicatedServer;
         return((casted?.LaunchAsDedicatedServer).GetValueOrDefault());
     });
     _keysPath =
         new Lazy <IAbsoluteDirectoryPath>(() => InstalledState.Directory.GetChildDirectoryWithName("keys"));
     _userconfigPath =
         new Lazy <IAbsoluteDirectoryPath>(() => InstalledState.Directory.GetChildDirectoryWithName("userconfig"));
 }
Beispiel #2
0
 protected ArmaGame(Guid id, RealVirtualityGameSettings settings) : base(id, settings)
 {
 }
 protected ArmaGame(Guid id, RealVirtualityGameSettings settings) : base(id, settings) {}