9 lines
209 B
C#
9 lines
209 B
C#
using UnityEditor;
|
|
|
|
[CustomEditor(typeof(UnfreezeFragment))]
|
|
[CanEditMultipleObjects]
|
|
public class UnfreezeFragmentEditor : Editor
|
|
{
|
|
// Empty editor required for custom property drawers to work properly
|
|
}
|