From 4072867576c59e5a40d937ef797be35954e86e9f Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Mon, 25 Dec 2023 13:25:51 +0800 Subject: [PATCH] 1 --- server/gameserver/creature.cc | 5 +++++ server/gameserver/creature.h | 1 + 2 files changed, 6 insertions(+) diff --git a/server/gameserver/creature.cc b/server/gameserver/creature.cc index 93faa13f..995d7a3d 100644 --- a/server/gameserver/creature.cc +++ b/server/gameserver/creature.cc @@ -3905,3 +3905,8 @@ void Creature::SpecShot(const glm::vec3& pos, int max_bullet) ); } } + +void Creature::AdjustMobaBornDir() +{ + +} diff --git a/server/gameserver/creature.h b/server/gameserver/creature.h index 58947875..324f1a92 100644 --- a/server/gameserver/creature.h +++ b/server/gameserver/creature.h @@ -404,6 +404,7 @@ class Creature : public MoveableEntity bool HasHeightOffset(); float GetHeightOffset(); void SpecShot(const glm::vec3& pos, int max_bullet); + void AdjustMobaBornDir(); protected: virtual void OnBuffRemove(Buff& buff);