9 lines
292 B
C#
Raw Normal View History

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