mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Include cleanup Reworked buildsystem (Linux only) Removed dynamic libs, Linux now again uses static linking (like windows)
33 lines
610 B
C++
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()
|
|
{
|
|
}
|
|
*/
|
|
}
|
|
}
|