diff --git a/server/gameserver/buff/autoshot.cc b/server/gameserver/buff/autoshot.cc index 2e8c69d2..3d96ad36 100644 --- a/server/gameserver/buff/autoshot.cc +++ b/server/gameserver/buff/autoshot.cc @@ -1,2 +1,13 @@ #include "precompile.h" -#include "buff.h" + +#include "buff/autoshot.h" + +void AutoShotBuff::Activate() +{ + +} + +void AutoShotBuff::Deactivate() +{ + +} diff --git a/server/gameserver/buff/autoshot.h b/server/gameserver/buff/autoshot.h index c6caff26..fbcc763d 100644 --- a/server/gameserver/buff/autoshot.h +++ b/server/gameserver/buff/autoshot.h @@ -4,7 +4,7 @@ class AutoShotBuff : Buff { - pubic: + public: virtual void Activate() override; virtual void Deactivate() override;