1
0
mirror of https://github.com/deavmi/eventy.git synced 2024-09-21 03:02:53 +02:00
eventy/source/eventy/package.d
Tristan B. Velloza Kildaire 7621ee5343 Completely overhauled Eventy system for the v0.4.0 release
Removed the event-loop for a better system (for now) whereby we just dispatch signal handlers on the call to `push(Event)`.

In a future release I hope to bring the event loop back but in a signal-based manner, such that we can support deferred events and priorities and such
2022-11-28 13:39:06 +02:00

8 lines
191 B
D

module eventy;
public import eventy.event;
public import eventy.exceptions;
public import eventy.engine;
public import eventy.types;
public import eventy.signal;
public import eventy.config;