polserver/pol-core/pol/multi/boatcomp.cpp
muaddib_pol d5e678bdd6 + Organization updates.
* Account and Multi related pol-2008.vcproj organized.
2009-09-04 06:37:13 +00:00

29 lines
482 B
C++

/*
History
=======
2009/09/03 MuadDib: Changes for account related source file relocation
Changes for multi related source file relocation
Notes
=======
*/
#include "../../clib/stl_inc.h"
#include "boatcomp.h"
UPlank::UPlank( const ItemDesc& descriptor ) : ULockable( descriptor, CLASS_ITEM )
{
}
void UPlank::setboat( UBoat* boat )
{
boat_.set(boat);
}
void UPlank::destroy()
{
boat_.clear();
base::destroy();
}