/* commands.h * * "Predefined Commands" for a simple 2-D game by Robert Marmorstein. * * Copyright (c) 2012 Robert Marmorstein (marmorsteinrm@longwood.edu) Released * under the terms of the GPL, version 2. See LICENSE file for details. * * For questions about the licensing of this software, contact me by mail: * Ruffner 329, Longwood University, 201 High Street, Farmville, VA 23909 */ #ifndef COMMANDS_H #define COMMANDS_H enum direction {NORTH, EAST, SOUTH, WEST}; #define CMD_QUIT -1 #define CMD_NORTH 1 #define CMD_EAST 2 #define CMD_SOUTH 3 #define CMD_WEST 4 #endif