mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-30 20:02:49 -05:00
8 lines
253 B
C#
8 lines
253 B
C#
|
namespace UnityAtoms.BaseAtoms
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Condition of type `float`. Inherits from `AtomCondition<float>`.
|
||
|
/// </summary>
|
||
|
[EditorIcon("atom-icon-teal")]
|
||
|
public abstract class FloatCondition : AtomCondition<float> { }
|
||
|
}
|