using System; namespace Chernobyl.Unity.Event { /// /// Key/value pair for associating a name with an . /// [Serializable] public struct NameEventSource { /// /// The name associated with the event source. /// public string Name; /// /// The event /// public EventSource EventSource; } }