mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-22 16:18:24 -05:00
8f6392c373
* Basic implementation of conditions for listeners * Tweak code style and add generated Conditions
9 lines
280 B
C#
9 lines
280 B
C#
using UnityEngine;
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Condition of type `Vector2`. Inherits from `AtomCondition<Vector2>`.
|
|
/// </summary>
|
|
[EditorIcon("atom-icon-teal")]
|
|
public abstract class Vector2Condition : AtomCondition<Vector2> { }
|
|
} |