mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-01-23 15:44:43 +00:00
07a6e612ec
This results in shorter and hopefully easier to maintain files. Note: I had to change paths in #include statements of some unrelated files, because I added the ottd base directory to the include path (-I.)
12 lines
264 B
C
12 lines
264 B
C
#ifndef DRIVER_H
|
|
#define DRIVER_H
|
|
|
|
void LoadDriver(int driver, const char *name);
|
|
|
|
bool GetDriverParamBool(const char* const* parm, const char* name);
|
|
int GetDriverParamInt(const char* const* parm, const char* name, int def);
|
|
|
|
void GetDriverList(char* p);
|
|
|
|
#endif
|