eventy/source/eventy/engine.d

17 lines
315 B
D
Raw Normal View History

2021-08-27 14:53:19 +01:00
module eventy.engine;
/**
* Engine
*
* An instance of this represents an engine that
* can, at any time, handle the delivery of new
* events, trigger the correct signal handlers
* for the respective events, remove signal
* handlers, add signal handlers, among many
* other things
*/
public final class Engine
{
}