Files
UltimateFishing2020/Assets/Scripts/Assembly-CSharp/TournamentCounter.cs
2026-03-04 10:03:45 +08:00

20 lines
249 B
C#

using UnityEngine;
public class TournamentCounter : MonoBehaviour
{
public PlayerTournamentItem playerTournament;
private void Start()
{
}
private void Update()
{
}
public void CounterDone()
{
playerTournament.StartTournament();
}
}