1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using UnityEngine;
- namespace CommonUI_Unity3D.Impl
- {
- public interface IUnityImageInterface
- {
- int Width { get; }
- int Height { get; }
- float MaxU { get; }
- float MaxV { get; }
- Texture Texture { get; }
- Texture TextureMask { get; }
- }
- }
|