mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 09:08:23 -05:00
27 lines
628 B
C#
27 lines
628 B
C#
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// None generic base class for `AtomEventReference<...>`.
|
|
/// </summary>
|
|
public abstract class AtomEventReferenceBase
|
|
{
|
|
/// <summary>
|
|
/// Enum for how to use the Event Reference.
|
|
/// </summary>
|
|
public enum Usage
|
|
{
|
|
Event = 0,
|
|
EventInstancer = 1,
|
|
Variable = 2,
|
|
VariableInstancer = 3,
|
|
}
|
|
|
|
/// <summary>
|
|
/// Describes how we use the Event Reference.
|
|
/// </summary>
|
|
[SerializeField]
|
|
protected Usage _usage;
|
|
}
|
|
} |