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