Esempio n. 1
0
 public LogoDaemon(Computer c, OS os, string name, bool showsTitle, string LogoImagePath)
     : base(c, name, os)
 {
     this.isListed      = true;
     this.showsTitle    = showsTitle;
     this.LogoImagePath = LogoImagePath;
     this.name          = name;
     this.spinner       = new TrailLoadingSpinnerEffect(os);
 }
Esempio n. 2
0
 public RTSPPortExe(Rectangle location, OS operatingSystem, string[] p)
     : base(location, operatingSystem)
 {
     this.name           = "RTSPCrack";
     this.ramCost        = 360;
     this.IdentifierName = "RTSPCrack";
     (this.os.connectedComp == null ? this.os.thisComputer : this.os.connectedComp).hostileActionTaken();
     this.spinner        = new TrailLoadingSpinnerEffect(operatingSystem);
     this.preciceRamCost = (float)this.ramCost;
 }