WorldInfo

Generic information about a world.

Constructors

this
this(uint id, string name)
Undocumented in source.

Members

Variables

children
shared(WorldInfo)[uint] children;
Undocumented in source.
chunks
size_t chunks;

Number of entities (players included), players and chunks in the world (children's not included) for statistic purposes.

entities
size_t entities;

Number of entities (players included), players and chunks in the world (children's not included) for statistic purposes.

id
uint id;

World's id, may be given by the server (for main worlds) or by the parent world (children worlds).

name
string name;

World's name, which is given by the user who creates the world. It may not be unique on the node. Children worlds have the same id as their parent's.

parent
shared(WorldInfo) parent;
Undocumented in source.
players
size_t players;

Number of entities (players included), players and chunks in the world (children's not included) for statistic purposes.

tid
Tid tid;

Thread where the world exists. Children worlds inherit the tid from their parents.

Meta