21 lines
423 B
C#
21 lines
423 B
C#
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()
|
|
{
|
|
}
|
|
}
|
|
} |