24 lines
483 B
C++
24 lines
483 B
C++
#pragma once
|
|
|
|
#include "mt/macro.h"
|
|
#include "mtb/GunTalentGrow.h"
|
|
|
|
namespace mt
|
|
{
|
|
|
|
DECLARE_ID_TABLE(GunTalentGrow, mtb::GunTalentGrow,
|
|
"gunTalentGrow@gunTalentGrow.json",
|
|
"id")
|
|
public:
|
|
|
|
std::vector<std::tuple<int, int>> _addattr;
|
|
void Init1();
|
|
|
|
static const GunTalentGrow* GetByIdQyality(int id, int quality);
|
|
|
|
private:
|
|
static std::map<long long, const mt::GunTalentGrow*> id_lv_hash_;
|
|
};
|
|
|
|
}
|