Coroutine/Coroutine/Event.cs

9 lines
284 B
C#
Raw Normal View History

2019-06-22 17:24:50 +02:00
namespace Coroutine {
2020-06-13 03:12:26 +02:00
/// <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>
2019-06-22 17:24:50 +02:00
public class Event {
}
}