Esempio n. 1
0
 public Answer(int uniqueID, string name, int soulLimit, DSPeer peer)
 {
     this.uniqueID  = uniqueID;
     this.name      = name;
     this.soulLimit = soulLimit;
     soulDictionary = new Dictionary <int, Soul>();
     this.peer      = peer;
 }
Esempio n. 2
0
 public Answer(SerializableAnswer answer, DSPeer peer)
 {
     uniqueID       = answer.UniqueID;
     name           = answer.Name;
     soulLimit      = answer.SoulLimit;
     soulDictionary = new Dictionary <int, Soul>();
     this.peer      = peer;
 }
Esempio n. 3
0
 public void SetAdministrator(int uniqueID, DSPeer peer)
 {
     administratorUniqueID = uniqueID;
     administratorPeer     = peer;
 }