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