mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 00:28:23 -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> { }
|
|
}
|