Beispiel #1
0
 private void OnUnitHighlighted(object sender, EventArgs e)
 {
     if (sender as Unit != CellGrid.UnitList[CellGrid.Turn])
     {
         CellGrid.HealthbarUpdate(sender as Unit, HealthbarText, HealthbarFull);
         CellGrid.NameUpdate(sender as Unit, UnitName);
         CellGrid.BuffsUpdate(sender as Unit, BuffPanel);
         CellGrid.PortraitUpdate(sender as Unit, Portrait, CellGrid.UnitList[CellGrid.Turn].TeamNumber);
         CellGrid.MouseEnterUnitUI();
     }
 }