file reorg, pathnames.h, paths.h
[unix-history] / usr / src / games / atc / tunable.c
CommitLineData
017d93a3
KB
1/*
2 * Copyright (c) 1987 by Ed James, UC Berkeley. All rights reserved.
3 *
4 * Copy permission is hereby granted provided that this notice is
5 * retained on all partial or complete copies.
6 *
7 * For more info on this and all of my stuff, mail edjames@berkeley.edu.
8 */
9
7abf8d65
KB
10#include "pathnames.h"
11
017d93a3
KB
12/*
13 * SPECIAL_DIR - Where the special files are kept.
14 * Change this to whatever you want. Be sure to have to path end
15 * with a '/', like "/usr/games/lib/atc/".
16 */
17
7abf8d65 18char SPECIAL_DIR[] = _PATH_SPECIAL_DIR;
017d93a3
KB
19
20/*
21 * NUM_SCORES - Number of scores that are kept track of.
22 * Keep this greater than 0, but less than 100.
23 * 4 lines are printed above the score, one below + your prompt, so
24 * to prevent scrolling: 6 + NUM_SCORES <= 24 (lines on an average terminal).
25 */
26int NUM_SCORES = 18;