Function System.this

Initialize a System given the ECS World and, optionally, a name.

this (
  const(World) world,
  const(string) name = ""
);

Parameters

NameDescription
world The World the System will operate on.
name A name for this System. Defaults to the derived class' name. Defaults to fullyQualifiedName!System or, in the case of a generated System, "fullyQualifiedName!System:FuncName" where FuncName is the name of the function used to generate the System.

See Also

World, System.name