eventy/source/eventy/event.d

20 lines
261 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)
{
this.id = typeID;
}
ulong id;
}