forked from rogueforge/rogomatic14
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.h
More file actions
41 lines (35 loc) · 1.55 KB
/
Copy pathconfig.h
File metadata and controls
41 lines (35 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Rog-O-Matic
* Automatically exploring the dungeons of doom.
*
* Copyright (C) 2026 Landon Curt Noll
*
* This file is part of Rog-O-Matic.
*
* Rog-O-Matic is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Rog-O-Matic is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Rog-O-Matic. If not, see <http://www.gnu.org/licenses/>.
*/
#if !defined(INCLUDE_CONFIG_H)
#define INCLUDE_CONFIG_H
/*
* global declarations
*/
extern char rgmdir[MU_BUF + 1]; /* rogomatic directory - may include UTC date and time sub-dir, +1 for paranoia */
extern char lock_path[TY_BUF + 1]; /* rogomatic lock file path, +1 for paranoia */
extern char level_path[TY_BUF + 1]; /* rogomatic level file path, +1 for paranoia */
extern char total_level_path[TY_BUF + 1]; /* rogomatic total level path, +1 for paranoia */
extern char gamelog_path[TY_BUF + 1]; /* rogomatic game log path, +1 for paranoia */
extern unsigned int dnum; /* rogue dungeon number */
extern long goodgame; /* level at which we always save the rogomatic game log file */
extern long usleep_usec; /* sleep time between actions in microseconds */
#endif