mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
29 lines
482 B
C++
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();
|
|
}
|