unity-atoms/Packages/BaseAtoms/Runtime/Actions/Collider2DAction.cs

10 lines
283 B
C#
Raw Normal View History

2018-10-30 15:05:06 -04:00
using UnityEngine;
2020-03-01 20:26:06 -05:00
namespace UnityAtoms.BaseAtoms
2018-10-30 15:05:06 -04:00
{
2019-10-15 16:27:22 -04:00
/// <summary>
/// Action of type `Collider2D`. Inherits from `AtomAction&lt;Collider2D&gt;`.
/// </summary>
2019-10-14 10:51:54 -04:00
[EditorIcon("atom-icon-purple")]
public abstract class Collider2DAction : AtomAction<Collider2D> { }
}