mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
14 lines
337 B
C#
14 lines
337 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms
|
|
{
|
|
/// <summary>
|
|
/// Reference of type `GameObject`. Inherits from `AtomReference<GameObject, GameObjectVariable>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class GameObjectReference : AtomReference<
|
|
GameObject,
|
|
GameObjectVariable> { }
|
|
}
|