unity-atoms/Packages/Core/Runtime/References/GameObjectReference.cs
2019-10-15 22:30:18 +02:00

14 lines
337 B
C#

using System;
using UnityEngine;
namespace UnityAtoms
{
/// <summary>
/// Reference of type `GameObject`. Inherits from `AtomReference&lt;GameObject, GameObjectVariable&gt;`.
/// </summary>
[Serializable]
public sealed class GameObjectReference : AtomReference<
GameObject,
GameObjectVariable> { }
}