Change: Don't pay Property Maintenance on stations when Infrastructure Maintenance...
[openttd-github.git] / src / story_type.h
blob386abe5e253c7c2b8e2bd673f5540a7fd42a2a9d
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;
19 enum StoryPageElementType : byte;
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 */