mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
12 lines
441 B
C#
12 lines
441 B
C#
|
using UnityEngine;
|
||
|
|
||
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Event Instancer of type `ColliderPair`. Inherits from `AtomEventInstancer<ColliderPair, ColliderPairEvent>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-sign-blue")]
|
||
|
[AddComponentMenu("Unity Atoms/Event Instancers/ColliderPair Event Instancer")]
|
||
|
public class ColliderPairEventInstancer : AtomEventInstancer<ColliderPair, ColliderPairEvent> { }
|
||
|
}
|