/// <summary> /// The entry point of the application. /// </summary> public static void Main() { /// <summary> /// Loads the Bootstrap. /// </summary> Bootstrap.Init(); /// <summary> /// Loads the AIO. /// </summary> Aio.OnLoad(); }
/// <summary> /// The entry point of the application. /// </summary> private static void Main() { /// <summary> /// Loads the Bootstrap. /// </summary> Bootstrap.Init(); Loading.OnLoadingComplete += (eventArgs) => { /// <summary> /// Loads the AIO. /// </summary> Aio.OnLoad(); }; }
/// <summary> /// The entry point of the application. /// </summary> private static void Main() { /// <summary> /// Loads the Bootstrap. /// </summary> Bootstrap.Init(); Events.OnLoad += (sender, eventArgs) => { /// <summary> /// Loads the AIO. /// </summary> Aio.OnLoad(); }; }