Update: Translations from eints
[openttd-github.git] / src / story_type.h
blob773c1a440465c76a46c429d27c7762f4c81f5347
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_t StoryPageElementID; ///< ID of a story page element
16 typedef uint16_t StoryPageID; ///< ID of a story page
17 struct StoryPageElement;
18 struct StoryPage;
19 enum StoryPageElementType : uint8_t;
21 static const StoryPageElementID INVALID_STORY_PAGE_ELEMENT = 0xFFFF; ///< Constant representing a non-existing story page element.
22 static const StoryPageID INVALID_STORY_PAGE = 0xFFFF; ///< Constant representing a non-existing story page.
24 #endif /* STORY_TYPE_H */