mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
8 lines
257 B
C#
8 lines
257 B
C#
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Condition of type `double`. Inherits from `AtomCondition<double>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-teal")]
|
||
|
public abstract class DoubleCondition : AtomCondition<double> { }
|
||
|
}
|