A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
516B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace GamecraftModdingAPI.Events
  7. {
  8. /// <summary>
  9. /// Built-in event types.
  10. /// These are configured to fire when the API is initialized.
  11. /// </summary>
  12. public enum EventType
  13. {
  14. ApplicationInitialized,
  15. Menu,
  16. MenuSwitchedTo,
  17. Game,
  18. GameReloaded,
  19. GameSwitchedTo,
  20. SimulationSwitchedTo,
  21. BuildSwitchedTo
  22. }
  23. }