mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-29 07:37:45 +00:00
remove const constraint
This commit is contained in:
parent
394988fbb0
commit
d68fa6d192
1 changed files with 3 additions and 3 deletions
|
@ -33,17 +33,17 @@ public:
|
||||||
std::memcpy( &m_data.effects[m_data.header.effectCount++], &effect, sizeof( Server::EffectEntry ) );
|
std::memcpy( &m_data.effects[m_data.header.effectCount++], &effect, sizeof( Server::EffectEntry ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
void setAnimationId( const uint16_t animationId )
|
void setAnimationId( uint16_t animationId )
|
||||||
{
|
{
|
||||||
m_data.header.actionAnimationId = animationId;
|
m_data.header.actionAnimationId = animationId;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setEffectFlags( const uint32_t effectFlags )
|
void setEffectFlags( uint32_t effectFlags )
|
||||||
{
|
{
|
||||||
m_data.effectFlags = effectFlags;
|
m_data.effectFlags = effectFlags;
|
||||||
}
|
}
|
||||||
|
|
||||||
void setRotation( const uint16_t rotation )
|
void setRotation( uint16_t rotation )
|
||||||
{
|
{
|
||||||
m_data.header.rotation = rotation;
|
m_data.header.rotation = rotation;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue