예제 #1
0
 private void SetTeamColor(Cell cell)
 {
     teamText.Text = ColorCode.TeamName(cell.TeamID);
     teamText.SetTextColor(ColorCode.BrightTeamColor(cell.TeamID));
 }
예제 #2
0
 private void SetCellText(Cell cell)
 {
     cellText.Text = cell.ID.ToString();
     cellText.SetTextColor(ColorCode.BrightTeamColor(cell.TeamID));
 }