A game about forced loneliness, made by TACStudios
1using UnityEngine;
2
3namespace Unity.VisualScripting
4{
5 /// <summary>
6 /// Use to draw immediate mode GUI components.
7 /// </summary>
8 [UnitCategory("Events/GUI")]
9 [TypeIcon(typeof(GUI))]
10 [UnitOrder(0)]
11 public sealed class OnGUI : GlobalEventUnit<EmptyEventArgs>
12 {
13 protected override string hookName => EventHooks.OnGUI;
14 }
15}