mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 17:17:47 -05:00
10 lines
392 B
C#
10 lines
392 B
C#
|
using UnityAtoms.MonoHooks;
|
||
|
namespace UnityAtoms.MonoHooks
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Function x 2 of type `ColliderGameObject`. Inherits from `AtomFunction<ColliderGameObject, ColliderGameObject>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-sand")]
|
||
|
public abstract class ColliderGameObjectColliderGameObjectFunction : AtomFunction<ColliderGameObject, ColliderGameObject> { }
|
||
|
}
|