polserver/pol-core/pol/equipdsc.cpp
turleypol dbb25bdb62
Include and buildsystem cleanup (#45)
Include cleanup
Reworked buildsystem (Linux only)
Removed dynamic libs, Linux now again uses static linking (like windows)
2018-01-29 21:55:48 +01:00

33 lines
610 B
C++

/** @file
*
* @par History
*/
#include "equipdsc.h"
namespace Pol
{
namespace Core
{
EquipDesc::EquipDesc( u32 objtype, Clib::ConfigElem& elem, Type type, const Plib::Package* pkg )
: ItemDesc( objtype, elem, type, pkg ), is_intrinsic( false ), is_pc_intrinsic( false )
{
}
void EquipDesc::PopulateStruct( Bscript::BStruct* descriptor ) const
{
base::PopulateStruct( descriptor );
}
size_t EquipDesc::estimatedSize() const
{
return base::estimatedSize() + sizeof( bool ) /*is_intrinsic*/
+ sizeof( bool ); /*is_pc_intrinsic*/
}
/*
EquipDesc::EquipDesc()
{
}
*/
}
}