mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
16 lines
408 B
C++
16 lines
408 B
C++
#include "dynproperties.h"
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Core
|
|
{
|
|
const ValueModPack ValueModPack::DEFAULT = ValueModPack();
|
|
|
|
const MovementCostMod MovementCostMod::DEFAULT = MovementCostMod( 1.0, 1.0, 1.0, 1.0 );
|
|
|
|
const ExtStatBarFollowers ExtStatBarFollowers::DEFAULT = ExtStatBarFollowers( 0, 0 );
|
|
|
|
const SkillStatCap SkillStatCap::DEFAULT = SkillStatCap( 225, 700 );
|
|
|
|
} // namespace Core
|
|
} // namespace Pol
|