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