2 * This file is part of OpenTTD.
3 * 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.
4 * 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.
5 * 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 /** @file story_type.h basic types related to story pages */
13 #include "core/enum_type.hpp"
15 typedef uint16 StoryPageElementID
; ///< ID of a story page element
16 typedef uint16 StoryPageID
; ///< ID of a story page
17 struct StoryPageElement
;
20 extern StoryPageElementID _new_story_page_element_id
;
21 extern StoryPageID _new_story_page_id
;
22 static const StoryPageElementID INVALID_STORY_PAGE_ELEMENT
= 0xFFFF; ///< Constant representing a non-existing story page element.
23 static const StoryPageID INVALID_STORY_PAGE
= 0xFFFF; ///< Constant representing a non-existing story page.
25 #endif /* STORY_TYPE_H */