This commit is contained in:
aozhiwei 2024-10-11 14:19:44 +08:00
parent 2ea0a2657d
commit 1e58a2bf88
3 changed files with 12 additions and 5 deletions

View File

@ -1,8 +1,3 @@
#include "precompile.h" #include "precompile.h"
#include "bag.h" #include "bag.h"
void Bag::UseItem(int equip_id)
{
}

View File

@ -5,6 +5,7 @@ class Bag
public: public:
void UseItem(int equip_id); void UseItem(int equip_id);
void PushBagInfo();
private: private:
Creature* owner_ = nullptr; Creature* owner_ = nullptr;

View File

@ -53,6 +53,7 @@
#include "custom_member.h" #include "custom_member.h"
#include "GGListener.h" #include "GGListener.h"
#include "netdata.h" #include "netdata.h"
#include "bag.h"
#include "mt/Param.h" #include "mt/Param.h"
#include "mt/Buff.h" #include "mt/Buff.h"
@ -2941,3 +2942,13 @@ void CustomBattle::NotifyState()
GGListener::Instance()->SendToClient(pair.first, 0, notify_msg); GGListener::Instance()->SendToClient(pair.first, 0, notify_msg);
} }
} }
void Bag::UseItem(int equip_id)
{
}
void Bag::PushBagInfo()
{
}