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.
 
 
 

14 lines
186 B

  1. using System;
  2. namespace CIGEnums
  3. {
  4. public enum AndroidBuildingState
  5. {
  6. STATE_DRAGGING = 1,
  7. STATE_BUILDING,
  8. STATE_ACTIVE,
  9. STATE_UPGRADING,
  10. STATE_DEMOLISHING
  11. }
  12. }