mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-26 06:27:45 +00:00
Moved rotation funciton, not inlined anymore
This commit is contained in:
parent
1edfc8490d
commit
aa2cfb5685
2 changed files with 13 additions and 9 deletions
|
@ -828,3 +828,13 @@ Core::StatusEffect::StatusEffectContainerPtr Core::Entity::Actor::getStatusEffec
|
|||
{
|
||||
return m_pStatusEffectContainer;
|
||||
}
|
||||
|
||||
float Core::Entity::Actor::getRotation() const
|
||||
{
|
||||
return m_rot;
|
||||
}
|
||||
|
||||
void Core::Entity::Actor::setRotation( float rot )
|
||||
{
|
||||
m_rot = rot;
|
||||
}
|
||||
|
|
|
@ -177,15 +177,9 @@ public:
|
|||
void setPosition( const Common::FFXIVARR_POSITION3& pos );
|
||||
void setPosition( float x, float y, float z );
|
||||
|
||||
void setRotation( float rot )
|
||||
{
|
||||
m_rot = rot;
|
||||
}
|
||||
void setRotation( float rot );
|
||||
|
||||
float getRotation() const
|
||||
{
|
||||
return m_rot;
|
||||
}
|
||||
float getRotation() const;
|
||||
|
||||
Common::FFXIVARR_POSITION3& getPos();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue