17 lines
509 B
C#
17 lines
509 B
C#
using System;
|
|
using KitsuneCafe.ItemSystem;
|
|
|
|
namespace UnityAtoms.KitsuneCafe.Atom.ItemSystem
|
|
{
|
|
/// <summary>
|
|
/// Event Reference of type `Item`. Inherits from `AtomEventReference<Item, ItemVariable, ItemEvent, ItemVariableInstancer, ItemEventInstancer>`.
|
|
/// </summary>
|
|
[Serializable]
|
|
public sealed class ItemEventReference : AtomEventReference<
|
|
Item,
|
|
ItemVariable,
|
|
ItemEvent,
|
|
ItemVariableInstancer,
|
|
ItemEventInstancer>, IGetEvent
|
|
{ }
|
|
}
|