ColumnPos

class ColumnPos
Int32 x { get; set; }

X coordinate.

Int32 z { get; set; }

Z coordinate.

static ColumnPos zero { get; }

Shorthand for writing ColumnPos(0, 0).

static ColumnPos north { get; }

Shorthand for writing ColumnPos(0, 1).

static ColumnPos south { get; }

Shorthand for writing ColumnPos(0, -1).

static ColumnPos east { get; }

Shorthand for writing ColumnPos(1, 0).

static ColumnPos west { get; }

Shorthand for writing ColumnPos(-1, 0).

ColumnPos (Int32 x, Int32 z)

Create a new ColumnPos using explicit x and z coordinates.