Ramaraunt1

terrainenums

Dec 29th, 2016
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4.  
  5. public enum BiomeType
  6. {
  7. Desert,
  8. Savanna,
  9. TropicalRainforest,
  10. Grassland,
  11. Woodland,
  12. SeasonalForest,
  13. TemperateRainforest,
  14. BorealForest,
  15. Tundra,
  16. Ice
  17. }
  18.  
  19. public enum MoistureType
  20. {
  21. Dryest,
  22. Dryer,
  23. Dry,
  24. Wet,
  25. Wetter,
  26. Wettest
  27. }
  28.  
  29. public enum HeatType
  30. {
  31. Coldest,
  32. Colder,
  33. Cold,
  34. Hot,
  35. Hotter,
  36. Hottest
  37. }
Advertisement
Add Comment
Please, Sign In to add comment