summaryrefslogtreecommitdiff
path: root/src/ground_vehicle.hpp
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-03-06 12:41:18 +0000
committerterkhen <terkhen@openttd.org>2010-03-06 12:41:18 +0000
commitf4281020927f0ee63227d8195a3a1479489f970a (patch)
treedd865d960f3a1bbe14f4e569dccbba41b2f7ceca /src/ground_vehicle.hpp
parentb5714c3597fc87219e3fa144ad181bfec707763d (diff)
downloadopenttd-f4281020927f0ee63227d8195a3a1479489f970a.tar.xz
(svn r19337) -Codechange: Create the GroundVehicle class.
Diffstat (limited to 'src/ground_vehicle.hpp')
-rw-r--r--src/ground_vehicle.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ground_vehicle.hpp b/src/ground_vehicle.hpp
new file mode 100644
index 000000000..e852fcee2
--- /dev/null
+++ b/src/ground_vehicle.hpp
@@ -0,0 +1,30 @@
+/* $Id$ */
+
+/*
+ * 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 ground_vehicle.hpp Base class and functions for all vehicles that move through ground. */
+
+#ifndef GROUND_VEHICLE_HPP
+#define GROUND_VEHICLE_HPP
+
+#include "vehicle_base.h"
+
+/**
+ * Base class for all vehicles that move through ground.
+ */
+template <class T, VehicleType Type>
+struct GroundVehicle : public SpecializedVehicle<T, Type> {
+
+ /**
+ * The constructor at SpecializedVehicle must be called.
+ */
+ GroundVehicle() : SpecializedVehicle<T, Type>() {}
+
+};
+
+#endif /* GROUND_VEHICLE_HPP */