mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-09-26 11:12:51 -04:00
29 lines
756 B
C++
29 lines
756 B
C++
//========================================================================
|
|
//
|
|
// VehicleController.cpp
|
|
//
|
|
// copyright 2001 Sony Online Entertainment
|
|
//
|
|
//========================================================================
|
|
|
|
#include "serverGame/FirstServerGame.h"
|
|
#include "serverGame/VehicleController.h"
|
|
|
|
#include "serverGame/GameServer.h"
|
|
#include "serverGame/VehicleObject.h"
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
VehicleController::VehicleController(VehicleObject * newOwner) :
|
|
TangibleController(newOwner)
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|
|
|
|
VehicleController::~VehicleController()
|
|
{
|
|
}
|
|
|
|
//-----------------------------------------------------------------------
|