summaryrefslogtreecommitdiff
path: root/src/newgrf_animation_type.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_animation_type.h')
-rw-r--r--src/newgrf_animation_type.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/newgrf_animation_type.h b/src/newgrf_animation_type.h
index 355aa8121..feb2bdfd8 100644
--- a/src/newgrf_animation_type.h
+++ b/src/newgrf_animation_type.h
@@ -53,4 +53,11 @@ enum AirpAnimationTrigger {
AAT_STATION_250_TICKS, ///< Triggered every 250 ticks (for all tiles at the same time).
};
+/** Animation triggers for objects. */
+enum ObjectAnimationTrigger {
+ OAT_BUILT, ///< Triggered when the object is built (for all tiles at the same time).
+ OAT_TILELOOP, ///< Triggered in the periodic tile loop.
+ OAT_250_TICKS, ///< Triggered every 250 ticks (for all tiles at the same time).
+};
+
#endif /* NEWGRF_ANIMATION_TYPE_H */