mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 17:17:47 -05:00
13 lines
387 B
C#
13 lines
387 B
C#
using UnityEditor;
|
|
using UnityAtoms.Editor;
|
|
using UnityAtoms.MonoHooks;
|
|
|
|
namespace UnityAtoms.MonoHooks.Editor
|
|
{
|
|
/// <summary>
|
|
/// Variable Inspector of type `Collider2DGameObject`. Inherits from `AtomVariableEditor`
|
|
/// </summary>
|
|
[CustomEditor(typeof(Collider2DGameObjectVariable))]
|
|
public sealed class Collider2DGameObjectVariableEditor : AtomVariableEditor { }
|
|
}
|