mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* tidy * Automated clang-tidy change: modernize-concat-nested-namespaces * compile test * fix namespace --------- Co-authored-by: Clang Tidy <clang-tidy@users.noreply.github.com>
14 lines
383 B
C++
14 lines
383 B
C++
#include "dynproperties.h"
|
|
|
|
|
|
namespace Pol::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 Pol::Core
|