mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
15 lines
346 B
C#
15 lines
346 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace UnityAtoms.BaseAtoms
|
|
{
|
|
/// <summary>
|
|
/// Interface for all Atom Collections.
|
|
/// </summary>
|
|
public interface IWithCollectionEvents
|
|
{
|
|
AtomBaseVariableEvent Added { get; set; }
|
|
AtomBaseVariableEvent Removed { get; set; }
|
|
VoidEvent Cleared { get; set; }
|
|
}
|
|
} |