예제 #1
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent, BaseLinker linker)
     : base(options, appLocations)
 {
     ImageFile     = imagefile;
     LauncherEvent = launcherEvent;
     Linker        = linker;
 }
예제 #2
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent, BaseLinker linker)
     : base(options, appLocations)
 {
     ImageFile = imagefile;
     LauncherEvent = launcherEvent;
     Linker = linker;
 }
예제 #3
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent)
     : base(options, appLocations)
 {
     ImageFile     = imagefile;
     LauncherEvent = launcherEvent;
 }
예제 #4
0
 public Starter(Options options, AppLocations appLocations, string imagefile, IStarterEvent launcherEvent)
     : base(options, appLocations)
 {
     ImageFile = imagefile;
     LauncherEvent = launcherEvent;
 }
예제 #5
0
 public Starter(Options options, AppLocations appLocations, IStarterEvent launcherEvent, BaseLinker linker)
     : base(options, appLocations)
 {
     LauncherEvent = launcherEvent;
     Linker        = linker;
 }
예제 #6
0
 public Starter(Options options, AppLocations appLocations, IStarterEvent launcherEvent)
     : base(options, appLocations)
 {
     LauncherEvent = launcherEvent;
 }