(svn r8211) -Codechange: (NewGRF) Implement callback 2D, explicit vehicle colour map

selection.
This commit is contained in:
2007-01-17 22:19:12 +00:00
parent 3d1735fcfd
commit 004f1b061f
2 changed files with 30 additions and 10 deletions

View File

@@ -48,6 +48,10 @@ enum CallbackID {
/* Called when building a station to customize the tile layout */
CBID_STATION_TILE_LAYOUT = 0x24,
/* Called to determine if a specific colour map should be used for a vehicle
* instead of the default livery */
CBID_VEHICLE_COLOUR_MAPPING = 0x2D,
/* Called when the player (or AI) tries to start or stop a vehicle. Mainly
* used for preventing a vehicle from leaving the depot. */
CBID_VEHICLE_START_STOP_CHECK = 0x31,