using UnityEngine; namespace SanAndreasUnity.UI { /// /// This script should have lowest possible script execution order so that the is subscribed to /// log events before any other script executes. /// public class ConsoleLogEventSubscriber : MonoBehaviour { void Awake() { Console.OnEventSubscriberAwake(); } } }