[6982] Implemented gmlevel-based command security
[getmangos.git] / src / game / Vehicle.h
blob7fd8b60c40ab5f1893005c9024f1b6f01b822893
1 /*
2 * Copyright (C) 2005-2008 MaNGOS <http://getmangos.com/>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef MANGOSSERVER_VEHICLE_H
20 #define MANGOSSERVER_VEHICLE_H
22 #include "ObjectDefines.h"
23 #include "Creature.h"
24 #include "Unit.h"
26 class Vehicle : public Creature
28 public:
29 explicit Vehicle();
30 virtual ~Vehicle();
32 void AddToWorld();
33 void RemoveFromWorld();
35 bool Create (uint32 guidlow, Map *map, uint32 Entry, uint32 vehicleId, uint32 team);
37 void setDeathState(DeathState s); // overwrite virtual Creature::setDeathState and Unit::setDeathState
38 void Update(uint32 diff); // overwrite virtual Creature::Update and Unit::Update
40 uint32 GetVehicleId() { return m_vehicleId; }
41 void SetVehicleId(uint32 vehicleid) { m_vehicleId = vehicleid; }
43 void Dismiss();
45 protected:
46 uint32 m_vehicleId;
48 private:
49 void SaveToDB(uint32, uint8) // overwrited of Creature::SaveToDB - don't must be called
51 assert(false);
53 void DeleteFromDB() // overwrited of Creature::DeleteFromDB - don't must be called
55 assert(false);
58 #endif