mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
10 lines
313 B
C#
10 lines
313 B
C#
using UnityEngine;
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Function x 2 of type `Collider`. Inherits from `AtomFunction<Collider, Collider>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-sand")]
|
|
public abstract class ColliderColliderFunction : AtomFunction<Collider, Collider> { }
|
|
}
|