unity-atoms/Source/Actions/SetVariable/SetGameObjectVariableValue.cs
2019-05-29 18:52:27 +02:00

14 lines
388 B
C#

using UnityEngine;
namespace UnityAtoms
{
[CreateAssetMenu(menuName = "Unity Atoms/Actions/Set Variable/GameObject", fileName = "SetGameObjectVariableValueAction")]
public sealed class SetGameObjectVariableValue : SetVariableValue<
GameObject,
GameObjectVariable,
GameObjectReference,
GameObjectEvent,
GameObjectGameObjectEvent>
{ }
}