cvr-props/Assets/ABI.CCK/Components/ScoreBoardController.cs
2023-01-22 16:38:23 +01:00

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>();
}
}