mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-24 08:09:03 -05:00
17 lines
376 B
C#
Executable File
17 lines
376 B
C#
Executable File
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
namespace SO.Channels
|
|
{
|
|
[CreateAssetMenu(menuName = "Channel/StepChangeChannelSO")]
|
|
public class StepChangeChannelSO : ScriptableObject
|
|
{
|
|
public UnityAction<StepSO> OnStepChanged;
|
|
|
|
public void RaiseEvent(StepSO step)
|
|
{
|
|
OnStepChanged?.Invoke(step);
|
|
}
|
|
}
|
|
}
|