Esempio n. 1
0
 /// <summary>
 /// Constructor by Account / Id
 /// </summary>
 internal GraalPlayer(Framework Server, Int16 Id)
 {
     this.Server = Server;
     this.Id = Id;
     this.ColorManager = new ColorManager(new ColorManager.dSendColors(SendColors));
     this.FlagManager = new FlagManager(new FlagManager.dSendFlag(SendFlag));
 }
Esempio n. 2
0
 /// <summary>
 /// Constructor
 /// </summary>
 internal GraalLevel(Framework Server, String LevelName)
 {
     this.Server = Server;
     this.Name = LevelName;
     this.FlagManager = new FlagManager(null);
 }