using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Beyond { public class ShadowSlayerStep : MonoBehaviour { public BaseStepController baseStepController; private void Start() { baseStepController.ConditionsAreMet += () => true; } // Update is called once per frame private void Update() { } } }