- Made many improvements to the host interface so things can run more smoothly.
14 lines
247 B
C#
14 lines
247 B
C#
|
|
using TMPro;
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
|
|
public class HostCardBetweenRoundsInterface : HostCardInterfaceBase
|
|
{
|
|
public TextMeshProUGUI CommentUI;
|
|
}
|