using UnityEngine;
namespace Unity.VisualScripting
{
///
/// Use to draw immediate mode GUI components.
///
[UnitCategory("Events/GUI")]
[TypeIcon(typeof(GUI))]
[UnitOrder(0)]
public sealed class OnGUI : GlobalEventUnit
{
protected override string hookName => EventHooks.OnGUI;
}
}