13 lines
271 B
Java
13 lines
271 B
Java
package com.realtime.packets.strategy;
|
|
|
|
|
|
|
|
import com.alibaba.fastjson2.JSONObject;
|
|
import com.realtime.packets.basePackets.BasePackets;
|
|
|
|
public interface PackStrategy {
|
|
boolean getCurrent(Byte commandLine);
|
|
|
|
BasePackets getCurrentPacket(JSONObject jsonObject);
|
|
}
|