A game about forced loneliness, made by TACStudios
1using System;
2
3namespace Unity.VisualScripting
4{
5#if MODULE_PHYSICS_2D_EXISTS
6 /// <summary>
7 /// Called when a collider exits the trigger.
8 /// </summary>
9 public sealed class OnTriggerExit2D : TriggerEvent2DUnit
10 {
11 public override Type MessageListenerType => typeof(UnityOnTriggerExit2DMessageListener);
12 protected override string hookName => EventHooks.OnTriggerExit2D;
13 }
14#endif
15}