12 lines
261 B
C#
12 lines
261 B
C#
using UnityEngine;
|
|
|
|
namespace Streamingle
|
|
{
|
|
public interface IController
|
|
{
|
|
string GetControllerId();
|
|
string GetControllerName();
|
|
object GetControllerData();
|
|
void ExecuteAction(string actionId, object parameters);
|
|
}
|
|
} |