revival/game/Assets/Plugins/FMOD/src/Runtime/FMODRuntimeManagerOnGUIHelper.cs

19 lines
427 B
C#
Raw Normal View History

2021-02-22 15:25:38 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace FMODUnity
{
public class FMODRuntimeManagerOnGUIHelper : MonoBehaviour
{
public RuntimeManager TargetRuntimeManager = null;
private void OnGUI()
{
if (TargetRuntimeManager)
{
TargetRuntimeManager.ExecuteOnGUI();
}
}
}
}