TapCommon-Unity/Mobile/Runtime/IBridge.cs

14 lines
259 B
C#

using System;
namespace TapTap.Common
{
public interface IBridge
{
void Register(string serviceClzName, string serviceImplName);
void Call(Command command);
void Call(Command command, Action<Result> action);
}
}