unity-atoms/Packages/BaseAtoms/Runtime/EventReferences/StringEventReference.cs
Adam Ramberg c3bc59259f More WIP
2020-03-02 02:26:06 +01:00

17 lines
485 B
C#

using System;
namespace UnityAtoms.BaseAtoms
{
/// <summary>
/// Event Reference of type `string`. Inherits from `AtomEventReference&lt;string, StringVariable, StringEvent, StringVariableInstancer, StringEventInstancer&gt;`.
/// </summary>
[Serializable]
public sealed class StringEventReference : AtomEventReference<
string,
StringVariable,
StringEvent,
StringVariableInstancer,
StringEventInstancer>, IGetEvent
{ }
}