unity-atoms/Packages/Core/Runtime/References/ColliderReference.cs

15 lines
369 B
C#
Raw Normal View History

using System;
using UnityEngine;
namespace UnityAtoms
{
2019-10-15 22:26:14 +02:00
/// <summary>
/// Reference of type `Collider`. Inherits from `AtomReference&lt;Collider, ColliderVariable, ColliderConstant&gt;`.
2019-10-15 22:26:14 +02:00
/// </summary>
[Serializable]
public sealed class ColliderReference : AtomReference<
Collider,
ColliderVariable,
ColliderConstant> { }
}