/* config.h * * Default Configuration 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 CONFIG_H #define CONFIG_H #define WIDTH 20 #define HEIGHT 20 #define NUM_GHOSTS 4 #endif