mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-27 22:11:39 +00:00
24 lines
539 B
C#
24 lines
539 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using OpenMetaverse.Stats;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
using UnityEngine.UI;
|
|
|
|
[RequireComponent(typeof(Button))]
|
|
public class ButtonTriggerModal : MonoBehaviour
|
|
{
|
|
private Button button;
|
|
// Start is called before the first frame update
|
|
void Awake()
|
|
{
|
|
button = GetComponent<Button>();
|
|
button.onClick.AddListener(OnButtonDown);
|
|
}
|
|
|
|
private void OnButtonDown()
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|