mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
13 lines
366 B
C#
13 lines
366 B
C#
using UnityEditor;
|
|
using UnityAtoms.Editor;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms.Editor
|
|
{
|
|
/// <summary>
|
|
/// Variable Inspector of type `Collider`. Inherits from `AtomVariableEditor`
|
|
/// </summary>
|
|
[CustomEditor(typeof(ColliderVariable))]
|
|
public sealed class ColliderVariableEditor : AtomVariableEditor<Collider, ColliderPair> { }
|
|
}
|