29 lines
No EOL
779 B
C#
Executable file
29 lines
No EOL
779 B
C#
Executable file
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
namespace ABI.CCK.Components
|
|
{
|
|
public class ScoreBoardController : MonoBehaviour
|
|
{
|
|
public GameInstanceController gameInstanceController;
|
|
|
|
public List<Text> roundTimers = new List<Text>();
|
|
public List<Text> roundStatus = new List<Text>();
|
|
|
|
public List<ScoreBoardDisplayElementsTeam> teamElements = new List<ScoreBoardDisplayElementsTeam>();
|
|
|
|
private void Start()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
[System.Serializable]
|
|
public class ScoreBoardDisplayElementsTeam
|
|
{
|
|
public List<Text> playerLists = new List<Text>();
|
|
public List<Text> teamScore = new List<Text>();
|
|
}
|
|
} |