Exemple #1
0
 public TerminalData(string Tag = null)
     : base(Tag)
 {
     HackingDifficulty = new HackingDifficulty();
     Flags             = new TerminalFlags();
     ServerType        = new TerminalServerType();
     Unused            = new byte[1];
 }
Exemple #2
0
 public TerminalData(HackingDifficulty HackingDifficulty, TerminalFlags Flags, TerminalServerType ServerType, Byte[] Unused)
 {
     this.HackingDifficulty = HackingDifficulty;
     this.Flags             = Flags;
     this.ServerType        = ServerType;
     this.Unused            = Unused;
 }