summaryrefslogtreecommitdiff
path: root/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs')
-rw-r--r--Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs b/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs
new file mode 100644
index 0000000..ffe7aed
--- /dev/null
+++ b/Assets/uGUI-2017.1/UnityEngine.UI/UI/Core/Mask/IMask.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace UnityEngine.UI
+{
+ [Obsolete("Not supported anymore.", true)]
+ public interface IMask
+ {
+ bool Enabled();
+ RectTransform rectTransform { get; }
+ }
+}