mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-06-07 16:47:44 +00:00
fixed style
This commit is contained in:
parent
12a2eae7fc
commit
c8bdb6d59d
2 changed files with 4 additions and 4 deletions
|
@ -598,12 +598,12 @@ void Sapphire::Entity::BNpc::setTimeOfDeath( uint32_t timeOfDeath )
|
|||
m_timeOfDeath = timeOfDeath;
|
||||
}
|
||||
|
||||
void Sapphire::Entity::BNpc::setDeaf( bool state )
|
||||
void Sapphire::Entity::BNpc::setIsDeaf( bool state )
|
||||
{
|
||||
m_isDeaf = state;
|
||||
}
|
||||
|
||||
void Sapphire::Entity::BNpc::setBlind( bool state )
|
||||
void Sapphire::Entity::BNpc::setIsBlind( bool state )
|
||||
{
|
||||
m_isBlind = state;
|
||||
}
|
||||
|
|
|
@ -94,9 +94,9 @@ namespace Sapphire::Entity
|
|||
uint32_t getTimeOfDeath() const;
|
||||
void setTimeOfDeath( uint32_t timeOfDeath );
|
||||
|
||||
void setDeaf( bool state );
|
||||
void setIsDeaf( bool state );
|
||||
|
||||
void setBlind( bool state );
|
||||
void setIsBlind( bool state );
|
||||
|
||||
bool getIsDeaf();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue