Files
Fishing2/Assets/Scripts/Model/Net/NetExtends.cs
2025-11-12 17:24:02 +08:00

12 lines
269 B
C#

using Fantasy.Network.Interface;
namespace NBF
{
public static class NetExtends
{
public static void DispatchMessage(this IResponse response)
{
Net.Inst.DispatchEventWith(response.OpCode().ToString(), response);
}
}
}