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 script_storypageelementlist.cpp Implementation of ScriptStoryPageElementList and friends. */
10 #include "../../stdafx.h"
11 #include "script_storypageelementlist.hpp"
12 #include "../../story_base.h"
14 #include "../../safeguards.h"
16 ScriptStoryPageElementList::ScriptStoryPageElementList(ScriptStoryPage::StoryPageID story_page_id
)
18 if (!ScriptStoryPage::IsValidStoryPage(story_page_id
)) return;
20 ScriptList::FillList
<StoryPageElement
>(this,
21 [story_page_id
](const StoryPageElement
*pe
) {return pe
->page
== story_page_id
; }