Coroutine/Coroutine/Event.cs

9 lines
284 B
C#

namespace Coroutine {
/// <summary>
/// An event is any kind of action that a <see cref="Wait"/> can listen for.
/// Note that, by default, events don't have a custom <see cref="object.Equals(object)"/> implementation.
/// </summary>
public class Event {
}
}