OpenTTD Source  1.11.2
story_type.h
Go to the documentation of this file.
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  */
7 
10 #ifndef STORY_TYPE_H
11 #define STORY_TYPE_H
12 
13 #include "core/enum_type.hpp"
14 
15 typedef uint16 StoryPageElementID;
16 typedef uint16 StoryPageID;
17 struct StoryPageElement;
18 struct StoryPage;
19 
20 extern StoryPageElementID _new_story_page_element_id;
21 extern StoryPageID _new_story_page_id;
23 static const StoryPageID INVALID_STORY_PAGE = 0xFFFF;
24 
25 #endif /* STORY_TYPE_H */
26 
INVALID_STORY_PAGE_ELEMENT
static const StoryPageElementID INVALID_STORY_PAGE_ELEMENT
Constant representing a non-existing story page element.
Definition: story_type.h:22
StoryPageID
uint16 StoryPageID
ID of a story page.
Definition: story_type.h:16
StoryPage
Struct about stories, current and completed.
Definition: story_base.h:159
StoryPageElementID
uint16 StoryPageElementID
ID of a story page element.
Definition: story_type.h:15
StoryPageElement
Struct about story page elements.
Definition: story_base.h:139
enum_type.hpp
INVALID_STORY_PAGE
static const StoryPageID INVALID_STORY_PAGE
Constant representing a non-existing story page.
Definition: story_type.h:23