mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-31 04:12:52 -05:00
12 lines
402 B
C#
12 lines
402 B
C#
using UnityEngine;
|
|||
|
|||
namespace UnityAtoms.BaseAtoms
|
|||
{
|
|||
/// <summary>
|
|||
/// Value List of type `double`. Inherits from `AtomValueList<double, DoubleEvent>`.
|
|||
/// </summary>
|
|||
[EditorIcon("atom-icon-piglet")]
|
|||
[CreateAssetMenu(menuName = "Unity Atoms/Value Lists/Double", fileName = "DoubleValueList")]
|
|||
public sealed class DoubleValueList : AtomValueList<double, DoubleEvent> { }
|
|||
}
|