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.

27 lines
556B

  1. using System;
  2. namespace TechbloxModdingAPI.App
  3. {
  4. public enum CurrentGameMode
  5. {
  6. None,
  7. /// <summary>
  8. /// Building a world
  9. /// </summary>
  10. Build,
  11. /// <summary>
  12. /// Playing on a map
  13. /// </summary>
  14. Play,
  15. /// <summary>
  16. /// Viewing a prefab (doesn't exist anymore)
  17. /// </summary>
  18. [Obsolete]
  19. View,
  20. /// <summary>
  21. /// Viewing a tutorial (doesn't exist anymore)
  22. /// </summary>
  23. [Obsolete]
  24. Tutorial
  25. }
  26. }