This commit is contained in:
aozhiwei 2023-05-18 16:28:00 +08:00
parent 28e9e00b2a
commit 58a28ac44c
2 changed files with 13 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include "mt/MergeItem.h" #include "mt/MergeItem.h"
IMPL_TABLE(mt::MergeItem) IMPL_TABLE(mt::MergeItem)
std::map<int, std::set<int>> mt::MergeItem::gun_num_buff_hash_;
namespace mt namespace mt
{ {
@ -11,4 +12,9 @@ namespace mt
{ {
} }
std::set<int>* GetBuffs(int gun_id, int num)
{
return nullptr;
}
} }

View File

@ -13,7 +13,14 @@ namespace mt
void Init1(); void Init1();
static std::set<int>* GetBuffs(int gun_id, int num);
private: private:
static std::map<int, std::set<int>> gun_num_buff_hash_;
std::set<int> _add_buff_list;
std::set<int> _remove_buff_list;
}; };
} }