1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-26 06:27:45 +00:00

cleanup incorrect usage of HandleActionType

This commit is contained in:
NotAdam 2019-02-09 19:24:32 +11:00
parent 6a88a6e694
commit e16995c997
2 changed files with 0 additions and 14 deletions

View file

@ -41,16 +41,6 @@ uint32_t Sapphire::Action::Action::getId() const
return m_id; return m_id;
} }
Sapphire::Common::HandleActionType Sapphire::Action::Action::getType() const
{
return m_type;
}
void Sapphire::Action::Action::setType( Sapphire::Common::HandleActionType type )
{
m_type = type;
}
void Sapphire::Action::Action::setPos( Sapphire::Common::FFXIVARR_POSITION3 pos ) void Sapphire::Action::Action::setPos( Sapphire::Common::FFXIVARR_POSITION3 pos )
{ {
m_pos = pos; m_pos = pos;

View file

@ -24,9 +24,6 @@ namespace Sapphire::Action
uint32_t getId() const; uint32_t getId() const;
Common::HandleActionType getType() const;
void setType( Common::HandleActionType type );
void setPos( Common::FFXIVARR_POSITION3 pos ); void setPos( Common::FFXIVARR_POSITION3 pos );
Common::FFXIVARR_POSITION3 getPos() const; Common::FFXIVARR_POSITION3 getPos() const;
@ -94,7 +91,6 @@ namespace Sapphire::Action
}; };
uint32_t m_id; uint32_t m_id;
Common::HandleActionType m_type;
Common::ActionCostType m_costType; Common::ActionCostType m_costType;
uint16_t m_cost; uint16_t m_cost;