driver.h
author peter1138
Tue, 20 Sep 2005 17:33:57 +0000
changeset 2440 d0c69700c72e
parent 2436 7d5df545bd5d
child 2831 952f77671794
permissions -rw-r--r--
(svn r2966) Fix: newgrf: Replace special case with a check for the existence of a handler in VehicleChangeInfo.
/* $Id$ */

#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 /* DRIVER_H */