summaryrefslogtreecommitdiff
path: root/src/newgrf_animation_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-28 17:29:12 +0000
committerrubidium <rubidium@openttd.org>2010-08-28 17:29:12 +0000
commit34da98f2b14e63c7042f44271d0b452fcd970737 (patch)
treecb2dccaff1ff58b3a26b4d0528d29b205f472c35 /src/newgrf_animation_type.h
parentf1f1c71a415354b00c744573eec7e7b2ce3cf7a4 (diff)
downloadopenttd-34da98f2b14e63c7042f44271d0b452fcd970737.tar.xz
(svn r20647) -Codechange: update some of the object spec information
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 */