Codechange: Use cached town, station, industry names for list window sorting
[openttd-github.git] / src / story_type.h
blob1dce00008bc151a00f34268222b92a08bfd2e695
1 /*
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/>.
6 */
8 /** @file story_type.h basic types related to story pages */
10 #ifndef STORY_TYPE_H
11 #define STORY_TYPE_H
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;
18 struct StoryPage;
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 */