mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
18 lines
552 B
C#
18 lines
552 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Event Reference of type `GameObject`. Inherits from `AtomEventReference<GameObject, GameObjectVariable, GameObjectEvent, GameObjectVariableInstancer, GameObjectEventInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class GameObjectEventReference : AtomEventReference<
|
|
GameObject,
|
|
GameObjectVariable,
|
|
GameObjectEvent,
|
|
GameObjectVariableInstancer,
|
|
GameObjectEventInstancer>, IGetEvent
|
|
{ }
|
|
}
|