Example #1
0
 public MainWindow(Battle.Core.BattlelordsSession session)
     : base("Battle")
 {
     this.session = session;
     this.build();
     this.DeleteEvent += HandleHandleDeleteEvent;
 }
Example #2
0
 public NewCharacterWindow(Battle.Core.BattlelordsSession session)
 {
     this.session = session;
     this.SetDefaultSize(400,300);
     this.SetPosition(WindowPosition.Center);
     this.build();
 }
Example #3
0
 public NewCharacterWindow(Battle.Core.BattlelordsSession session)
 {
     this.session = session;
     this.SetDefaultSize(400, 300);
     this.SetPosition(WindowPosition.Center);
     this.build();
 }
 public BattlelordsCharacterWindow(BattlelordsSession session)
     : base("Battlelords Character")
 {
     this.session = session;
     this.SetDefaultSize(400,600);
     this.SetPosition(WindowPosition.Center);
     this.build();
 }
Example #5
0
 public VitalWidget(BattlelordsSession session, string vitalname, int vitalvalue)
     : base()
 {
     this.session = session;
     this.vitalname = vitalname;
     this.vital = vitalvalue;
     this.build();
 }
Example #6
0
 public PreferencesDialog(BattlelordsSession session)
     : base()
 {
     this.session = session;
     this.build();
 }
Example #7
0
 public MainWindow(Battle.Core.BattlelordsSession session) : base("Battle")
 {
     this.session = session;
     this.build();
     this.DeleteEvent += HandleHandleDeleteEvent;
 }