public NewCharacterWindow(AdeptusSession session)
     : base()
 {
     this.session = session;
     this.build ();
     this.SetPosition (WindowPosition.CenterOnParent);
 }
Exemple #2
0
 public AdeptusWindow(AdeptusSession session)
     : base("Adeptus")
 {
     this.session = session;
     this.DeleteEvent += HandleDeleteEvent;
     this.build ();
     this.ActiveCharacter(false);
 }
Exemple #3
0
 public Character(AdeptusSession session, string name, string player)
 {
     this.session = session;
     this.name    = name;
     this.player  = player;
 }
Exemple #4
0
 public Character(AdeptusSession session, string name, string player)
 {
     this.session = session;
     this.name = name;
     this.player = player;
 }