summaryrefslogtreecommitdiff
path: root/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs
blob: ffe7aed5c2cdda395238a5ea3e87ecffb0277f62 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace UnityEngine.UI
{
    [Obsolete("Not supported anymore.", true)]
    public interface IMask
    {
        bool Enabled();
        RectTransform rectTransform { get; }
    }
}