From e16995c997fbe3cfa3fea510429232b7d8ce57cc Mon Sep 17 00:00:00 2001 From: NotAdam Date: Sat, 9 Feb 2019 19:24:32 +1100 Subject: [PATCH] cleanup incorrect usage of HandleActionType --- src/world/Action/Action.cpp | 10 ---------- src/world/Action/Action.h | 4 ---- 2 files changed, 14 deletions(-) diff --git a/src/world/Action/Action.cpp b/src/world/Action/Action.cpp index 27a5ff78..d7ac7e18 100644 --- a/src/world/Action/Action.cpp +++ b/src/world/Action/Action.cpp @@ -41,16 +41,6 @@ uint32_t Sapphire::Action::Action::getId() const 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 ) { m_pos = pos; diff --git a/src/world/Action/Action.h b/src/world/Action/Action.h index e78e89fe..49ecd765 100644 --- a/src/world/Action/Action.h +++ b/src/world/Action/Action.h @@ -24,9 +24,6 @@ namespace Sapphire::Action uint32_t getId() const; - Common::HandleActionType getType() const; - void setType( Common::HandleActionType type ); - void setPos( Common::FFXIVARR_POSITION3 pos ); Common::FFXIVARR_POSITION3 getPos() const; @@ -94,7 +91,6 @@ namespace Sapphire::Action }; uint32_t m_id; - Common::HandleActionType m_type; Common::ActionCostType m_costType; uint16_t m_cost;