ImageSource.cs 259 B

123456789101112131415
  1. using System;
  2. using UnityEngine;
  3. using UnityEngine.UI;
  4. using UnityEngine.Events;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7. namespace PSDUIImporter
  8. {
  9. public enum ImageSource
  10. {
  11. Common,
  12. Custom,
  13. Global
  14. }
  15. }