mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
13 lines
376 B
C#
13 lines
376 B
C#
using UnityEditor;
|
|
using UnityAtoms.Editor;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms.Editor
|
|
{
|
|
/// <summary>
|
|
/// Variable Inspector of type `Collider2D`. Inherits from `AtomVariableEditor`
|
|
/// </summary>
|
|
[CustomEditor(typeof(Collider2DVariable))]
|
|
public sealed class Collider2DVariableEditor : AtomVariableEditor<Collider2D, Collider2DPair> { }
|
|
}
|