blob: cad5773add7bb42621e8cc3177c20858881ad057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using UnityEngine.UI;
namespace UnityEditor.UI
{
[CustomEditor(typeof(RectMask2D), true)]
[CanEditMultipleObjects]
public class RectMask2DEditor : Editor
{
public override void OnInspectorGUI()
{
}
}
}
|