forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pathes.h
36 lines (30 loc) · 819 Bytes
/
pathes.h
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
/*
* Copyright (c) 1997 - 2003 by Volker Meyer & Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic license.
*
* Description:
* This header defines all paths used be simutrans relative to the game
* directory.
*/
#ifndef __PATHES_H
#define __PATHES_H
/**
* two defines for all paths - if You want the root path, use:
* #define _PATH ""
* #define _PATH_X ""
* else use
* #define _PATH "somewhere"
* #define _PATH_X _PATH "/"
*
* @author Volker Meyer
* @date 18.06.2003
*/
#define FONT_PATH "font"
#define FONT_PATH_X FONT_PATH "/"
#define SAVE_PATH "save"
#define SAVE_PATH_X SAVE_PATH "/"
#define SAVE_PATH_X_LEN (sizeof(SAVE_PATH_X) - 1)
#define SCREENSHOT_PATH "screenshot"
#define SCREENSHOT_PATH_X SCREENSHOT_PATH "/"
#endif