OpenTTD
newgrf_animation_type.h
Go to the documentation of this file.
1 /* $Id: newgrf_animation_type.h 22745 2011-08-14 13:45:36Z frosch $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8  */
9 
12 #ifndef NEWGRF_ANIMATION_TYPE_H
13 #define NEWGRF_ANIMATION_TYPE_H
14 
15 static const uint8 ANIM_STATUS_NON_LOOPING = 0x00;
16 static const uint8 ANIM_STATUS_LOOPING = 0x01;
17 static const uint8 ANIM_STATUS_NO_ANIMATION = 0xFF;
18 
20 struct AnimationInfo {
21  uint8 frames;
22  uint8 status;
23  uint8 speed;
24  uint16 triggers;
25 };
26 
36 };
37 
45 };
46 
54 };
55 
61 };
62 
63 #endif /* NEWGRF_ANIMATION_TYPE_H */