Files
Fishing2/Assets/Scripts/Net/NetExtends.cs
2025-08-20 23:57:22 +08:00

12 lines
265 B
C#

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