(svn r10508) -Codechange: allow customizable animation schemes for industries.

This commit is contained in:
rubidium
2007-07-11 15:03:29 +00:00
parent 8d4b7ac33b
commit 79d04412b0
8 changed files with 150 additions and 11 deletions

View File

@@ -85,13 +85,13 @@ enum CallbackID {
CBID_STATION_TILE_LAYOUT = 0x24,
/** Called for periodically starting or stopping the animation. */
CBID_INDTILE_ANIM_START_STOP = 0x25, // not implemented
CBID_INDTILE_ANIM_START_STOP = 0x25,
/** Called to determine industry tile next animation frame. */
CBID_INDTILE_ANIM_NEXT_FRAME = 0x26, // not implemented
CBID_INDTILE_ANIM_NEXT_FRAME = 0x26,
/** Called to indicate how long the current animation frame should last. */
CBID_INDTILE_ANIMATION_SPEED = 0x27, // not implemented
CBID_INDTILE_ANIMATION_SPEED = 0x27,
/** Called to determine if the given industry can be built on specific area. */
CBID_INDUSTRY_LOCATION = 0x28,