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.

23 lines
452B

  1. namespace TechbloxModdingAPI.App
  2. {
  3. public enum CurrentGameMode
  4. {
  5. None,
  6. /// <summary>
  7. /// Building a game
  8. /// </summary>
  9. Build,
  10. /// <summary>
  11. /// Playing a game
  12. /// </summary>
  13. Play,
  14. /// <summary>
  15. /// Viewing a prefab
  16. /// </summary>
  17. View,
  18. /// <summary>
  19. /// Viewing a tutorial
  20. /// </summary>
  21. Tutorial
  22. }
  23. }