summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/pethandler.cpp4
-rw-r--r--src/net/tmwa/pethandler.h3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/net/tmwa/pethandler.cpp b/src/net/tmwa/pethandler.cpp
index 0156ef7c2..079caae37 100644
--- a/src/net/tmwa/pethandler.cpp
+++ b/src/net/tmwa/pethandler.cpp
@@ -105,4 +105,8 @@ void PetHandler::unequip() const
{
}
+void PetHandler::setDirection(const BeingDirection::Type type) const
+{
+}
+
} // namespace TmwAthena
diff --git a/src/net/tmwa/pethandler.h b/src/net/tmwa/pethandler.h
index fa46256c2..49f32e84d 100644
--- a/src/net/tmwa/pethandler.h
+++ b/src/net/tmwa/pethandler.h
@@ -63,6 +63,9 @@ class PetHandler final : public MessageHandler, public Net::PetHandler
void unequip() const override final;
+ void setDirection(const BeingDirection::Type type) const
+ override final;
+
protected:
int mRandCounter;
};