1
Fork 0
mirror of https://github.com/Steffo99/better-tee.git synced 2024-11-22 23:34:18 +00:00
better-tee/Assets/Old/Code/Viewer/StartGameBtn.cs

18 lines
316 B
C#
Raw Normal View History

2019-09-21 00:24:30 +00:00
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
namespace BetterTee.Viewer
{
public class StartGameBtn : MonoBehaviour
{
public LobbyController lobbyController;
public void OnClick() {
lobbyController.OnStartGameBtnPress();
}
}
}