This commit is contained in:
aozhiwei 2023-12-13 14:09:48 +08:00
parent 4feb197b97
commit f77759b1bd
2 changed files with 6 additions and 0 deletions

View File

@ -356,4 +356,9 @@ namespace mt
return weapon_stone_;
}
bool Equip::IsMultistageGun() const
{
return false;
}
}

View File

@ -45,6 +45,7 @@ namespace mt
void AddMuzzlePos(int lv, std::shared_ptr<std::tuple<float, float, float>> pos);
int GetWeaponIdx() const;
bool Match(EventAddBuff_e event, int val, int val2) const;
bool IsMultistageGun() const;
static const Equip* GetByIdBySlotId(int slot_id);
static void AdjustMuzzlePos();
static const Equip* GetYellowStone();