Location Functions

From theFarWilds
Revision as of 14:20, 16 April 2010 by Jed (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

A location object represents a particular hex on the playing map. Note that the TFW Coordinate System is transposed -- the x-axis is vertical and the y-axis is horizontal. Labeling starts from zero.

Constructors

Location createLocation( int x, int y );

Methods

bool isAloft(); 
// false if an Aloft guy is grounded after melee

bool isValid();

int distance(Location);

int getX();
int getY();

Player getController();