TechbloxModdingAPI/GamecraftModdingAPI/Events/EventType.cs

25 lines
516 B
C#
Raw Normal View History

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