9 lines
279 B
C#
9 lines
279 B
C#
|
|
namespace OECS;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Marker interface for interrupt types. An interrupt is a signal issued by a
|
||
|
|
/// system that blocks the next tick until a matching <see cref="IInterruptHandlerCommand{TInterrupt}"/>
|
||
|
|
/// resolves it.
|
||
|
|
/// </summary>
|
||
|
|
public interface IInterrupt { }
|