This commit is contained in:
aozhiwei 2022-12-30 09:23:08 +08:00
parent 8a389c0371
commit e4f4b2ff0e
2 changed files with 89 additions and 82 deletions

View File

@ -75,6 +75,19 @@ void MachineGunBuff::ProcSkill()
break;
case MAGIC_FG:
{
FgSkill();
}
break;
default:
{
}
break;
}
}
}
void MachineGunBuff::FgSkill()
{
bool shot_ok = false;
a8::Vec2 target_dir;
float fly_distance = 0;
@ -157,12 +170,5 @@ void MachineGunBuff::ProcSkill()
a8::XPrintf("%s\n", {dbg_msg});
}
#endif
}
break;
default:
{
}
break;
}
}
}

View File

@ -13,4 +13,5 @@ class MachineGunBuff : public Buff
void SwitchWeapons();
void ProcSkill();
void FgSkill();
};