IUnityImageInterface.cs 382 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using UnityEngine;
  6. namespace CommonUI_Unity3D.Impl
  7. {
  8. public interface IUnityImageInterface
  9. {
  10. int Width { get; }
  11. int Height { get; }
  12. float MaxU { get; }
  13. float MaxV { get; }
  14. Texture Texture { get; }
  15. Texture TextureMask { get; }
  16. }
  17. }