eventy/source/eventy/event.d

20 lines
261 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)
{
2021-09-01 14:33:15 +01:00
this.id = typeID;
2021-08-27 15:12:48 +01:00
}
2021-08-31 10:34:29 +01:00
ulong id;
2021-08-27 15:12:48 +01:00
}