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 
8 /** @file script_objecttypelist.cpp Implementation of ScriptObjectTypeList. */
9 
10 #include "../../stdafx.h"
11 #include "script_objecttypelist.hpp"
12 #include "../../newgrf_object.h"
13 
14 #include "../../safeguards.h"
15 
ScriptObjectTypeList()16 ScriptObjectTypeList::ScriptObjectTypeList()
17 {
18 	for (int i = 0; i < NUM_OBJECTS; i++) {
19 		const ObjectSpec *spec = ObjectSpec::Get(i);
20 		if (!spec->IsEverAvailable()) continue;
21 		this->AddItem(i);
22 	}
23 }
24