TapCommon-Unity/Mobile/Runtime/IBridge.cs

14 lines
259 B
C#
Raw Normal View History

2023-08-24 19:03:07 +08:00
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);
}
}