eventy/source/eventy/event.d

18 lines
221 B
D
Raw Normal View History

2021-08-27 15:12:48 +01:00
module eventy.event;
/**
* Event
*
* An Event represents a trigger for a given signal(s)
* handlers which associate with the given typeID
*/
public class Event
{
/**
*
*/
this(ulong typeID)
{
}
}