using UnityEngine; namespace Streamingle { public interface IController { string GetControllerId(); string GetControllerName(); object GetControllerData(); void ExecuteAction(string actionId, object parameters); } }