19 lines
414 B
C#
19 lines
414 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Beyond
|
|
{
|
|
public class ShieldStep : MonoBehaviour
|
|
{
|
|
public bMeleeCombatInput bMeleeCombatInput;
|
|
|
|
public BaseStepController baseStepController;
|
|
|
|
private void Start()
|
|
{
|
|
baseStepController.ConditionsAreMet += () => bMeleeCombatInput.isBlocking;
|
|
}
|
|
}
|
|
} |