EntityID

Mixin template to add the entity ID member to a type

struct MyEntity {
    mixin EntityID;
}
You don’t have to use this, but it might help with reduction of boilerplate code.
@safe
mixin template EntityID () {}

Members

Variables

id
ulong id;
Undocumented in source.

Meta