/// --------------------------------------------- /// Opsive Shared /// Copyright (c) Opsive. All Rights Reserved. /// https://www.opsive.com /// --------------------------------------------- namespace Opsive.Shared.Events { using UnityEngine; /// /// Resets the event handler static variables. /// public class DomainResetter { /// /// Reset the static variables for domain reloading. /// [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.SubsystemRegistration)] public static void DomainReset() { EventHandler.DomainReset(); } } }