File diff r18880:d1db1f3ee26b → r18881:ca79a2e629a6
src/script/api/script_event_types.cpp
Show inline comments
 
@@ -4,25 +4,24 @@
 
 * This file is part of OpenTTD.
 
 * 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.
 
 * 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.
 
 * 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/>.
 
 */
 

	
 
/** @file script_event_types.cpp Implementation of all EventTypes. */
 

	
 
#include "../../stdafx.h"
 
#include "script_event_types.hpp"
 
#include "script_vehicle.hpp"
 
#include "script_log.hpp"
 
#include "../../command_type.h"
 
#include "../../strings_func.h"
 
#include "../../settings_type.h"
 
#include "../../engine_base.h"
 
#include "../../articulated_vehicles.h"
 
#include "table/strings.h"
 

	
 
bool ScriptEventEnginePreview::IsEngineValid() const
 
{
 
	const Engine *e = ::Engine::GetIfValid(this->engine);
 
	return e != NULL && e->IsEnabled();
 
}