Mercurial > hg > openttd
view src/driver.h @ 5665:3cc382938839 draft
(svn r8125) -Codechange: Station is now constructed/destroyed using new/delete operators (don't worry, they still use the same memory pool). Few station related functions turned into Station::methods (just first step). All this new stuff moved from station_cmd.cpp to the new file (station.cpp).
author | KUDr <KUDr@openttd.org> |
---|---|
date | Sun, 14 Jan 2007 19:18:50 +0000 |
parents | eabf4b86aed6 |
children | 46d001ebacf6 |
line wrap: on
line source
/* $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); char *GetDriverList(char *p, const char *last); #endif /* DRIVER_H */