8 lines
245 B
C#
Raw Normal View History

namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Condition of type `int`. Inherits from `AtomCondition&lt;int&gt;`.
/// </summary>
[EditorIcon("atom-icon-teal")]
public abstract class IntCondition : AtomCondition<int> { }
}