eTermType.cs 183 B

12345678910111213141516171819
  1. using System;
  2. namespace I2.Loc
  3. {
  4. public enum eTermType
  5. {
  6. Text,
  7. Font,
  8. Texture,
  9. AudioClip,
  10. GameObject,
  11. Sprite,
  12. Material,
  13. Child,
  14. UIAtlas,
  15. UIFont,
  16. Object
  17. }
  18. }