unity-atoms/Source/Actions/SetVariableValue/SetGameObjectVariableValue.cs
2019-09-18 22:34:40 +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>
{ }
}