mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
13 lines
435 B
C#
13 lines
435 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<Collider2DGameObject, Collider2DGameObjectPair> { }
|
|
}
|