This commit is contained in:
aozhiwei 2024-03-29 17:48:37 +08:00
parent 8f8f91ddbb
commit e0bc44f63b

View File

@ -46,6 +46,27 @@ void InGameVoice::OnHumanBeKill(int killer_id, Human* deader)
InGameVoiceEventType_e::kGlobalKills,
[this] (const mt::InGameVoice* meta) -> bool
{
switch (meta->CondType()) {
case InGameVoiceCondType_e::kEQ:
{
}
break;
case InGameVoiceCondType_e::kGT:
{
}
break;
case InGameVoiceCondType_e::kGE:
{
}
break;
default:
{
}
break;
}
return true;
});
}