eventy/source/eventy/event.d

18 lines
221 B
D

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)
{
}
}