mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
13 lines
542 B
C#
13 lines
542 B
C#
|
using UnityEngine;
|
||
|
using UnityAtoms.MonoHooks;
|
||
|
|
||
|
namespace UnityAtoms.MonoHooks
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Value List of type `Collider2DGameObject`. Inherits from `AtomValueList<Collider2DGameObject, Collider2DGameObjectEvent>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-piglet")]
|
||
|
[CreateAssetMenu(menuName = "Unity Atoms/Value Lists/Collider2DGameObject", fileName = "Collider2DGameObjectValueList")]
|
||
|
public sealed class Collider2DGameObjectValueList : AtomValueList<Collider2DGameObject, Collider2DGameObjectEvent> { }
|
||
|
}
|