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