示例#1
0
    private IEnumerator ThrowPunch(float delay)
    {
        yield return(new WaitForSeconds(delay));

        DoDamage();
        _sfx.Punch();
    }