mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-04-17 06:16:03 -05:00
24 lines
388 B
C#
24 lines
388 B
C#
using MLAPI;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class PostGameUI : NetworkBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
|
|
public void OnReturnToLobbyClicked() {
|
|
//TODO: Do it here
|
|
}
|
|
}
|