mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-23 07:38:33 -05:00
17 lines
298 B
C#
Executable File
17 lines
298 B
C#
Executable File
using SO;
|
|
using SO.Channels;
|
|
using UnityEngine;
|
|
|
|
namespace SO
|
|
{
|
|
public class SimpleBroadCaster : MonoBehaviour
|
|
{
|
|
[SerializeField]private SimpleChannelSO channel;
|
|
|
|
public void RaiseEvent()
|
|
{
|
|
channel.RaiseEvent();
|
|
}
|
|
}
|
|
}
|