16 lines
299 B
C#
16 lines
299 B
C#
|
|
using TMPro;
|
|
using UnityEngine.UI;
|
|
using UdonSharp;
|
|
using UnityEngine;
|
|
using VRC.SDKBase;
|
|
using VRC.Udon;
|
|
|
|
|
|
[UdonBehaviourSyncMode(BehaviourSyncMode.Manual)]
|
|
public class HostCardLightningRoundInterface : HostCardInterfaceBase
|
|
{
|
|
public TextMeshProUGUI QuestionUI;
|
|
public Button OtherButton;
|
|
}
|