using UdonSharp;
using VRC.Udon;
///
/// Script from Reimajo, purchased at https://reimajo.booth.pm/
/// Join my Discord Server to receive update notifications & support for this asset: https://discord.gg/SWkNA394Mm
/// There is a version of this tool available with advanced protection, see my discord for more details.
/// If you have any issues, please contact me on Discord or Booth or Twitter https://twitter.com/ReimajoChan
///
namespace ReimajoBoothAssets
{
///
/// Desktop button on the admin Panel
///
public class AdminPanelDesktopButton : UdonSharpBehaviour
{
public string _eventName;
public UdonBehaviour _targetScript;
public override void Interact()
{
_targetScript.SendCustomEvent(_eventName);
}
}
}