Files
beyond/Assets/Scripts/Tutorial/QuantaCastStep.cs
2024-11-20 15:21:28 +01:00

23 lines
538 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Beyond
{
public class QuantaCastStep : MonoBehaviour
{
public MagicAttacks magicAttacks;
public BaseStepController baseStepController;
// Start is called before the first frame update
private void Start()
{
baseStepController.ConditionsAreMet += () => magicAttacks.isPlaying;
}
// Update is called once per frame
private void Update()
{
}
}
}