Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecpp
titleshort_dirs[]
collapsetrue
// Added global constant by Nimrod - 7 Sept 13
// Abbreviations for directions found in dirs[]  - Must be declared in SAME order as dirs[]

const char* const short_dirs[] =
{
	"n",
	"e",
	"s",
	"w",
	"u",
	"d",
	"o",
	"i",
	"ne",
	"nw",
	"se",
	"sw",
	"\n"
};

...