unity-atoms/Source/GameObject/GameObjectReference.cs

9 lines
223 B
C#
Raw Normal View History

using System;
using UnityEngine;
namespace UnityAtoms
{
[Serializable]
public class GameObjectReference : ScriptableObjectReference<GameObject, GameObjectVariable, GameObjectEvent, GameObjectGameObjectEvent> { }
}