TechbloxModdingAPI/GamecraftModdingAPI/Events/EventType.cs

25 lines
516 B
C#
Raw Normal View History

2019-12-13 20:42:55 -08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GamecraftModdingAPI.Events
{
2019-12-14 10:52:24 -08:00
/// <summary>
/// Built-in event types.
/// These are configured to fire when the API is initialized.
/// </summary>
2019-12-13 20:42:55 -08:00
public enum EventType
{
ApplicationInitialized,
2019-12-14 10:52:24 -08:00
Menu,
2019-12-13 20:42:55 -08:00
MenuSwitchedTo,
2019-12-14 10:52:24 -08:00
Game,
2019-12-13 20:42:55 -08:00
GameReloaded,
GameSwitchedTo,
SimulationSwitchedTo,
BuildSwitchedTo
2019-12-13 20:42:55 -08:00
}
}