polserver/pol-core/pol/uobjcnt.cpp
2018-04-03 04:45:11 +02:00

25 lines
373 B
C++

/** @file
*
* @par History
*/
#include "uobjcnt.h"
namespace Pol
{
namespace Core
{
// This comment is needed for correct indentation to be detected
UObjCount::UObjCount()
: unreaped_orphans( 0 ),
uobject_count( 0 ),
uitem_count( 0 ),
ucharacter_count( 0 ),
npc_count( 0 ),
umulti_count( 0 ),
uobj_count_echrref( 0 )
{
}
}
}