12 lines
441 B
Go
12 lines
441 B
Go
|
|
package org.nieo.seerproject.common.net.info.user;
|
||
|
|
|
||
|
|
import org.nieo.seerproject.common.annotations.InboundMessageType;
|
||
|
|
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
|
||
|
|
import org.nieo.seerproject.common.net.InboundMessage;
|
||
|
|
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
|
||
|
|
|
||
|
|
@AutoCodec
|
||
|
|
@InboundMessageType(MessageCommandIDRegistry.Pet_Get_Exp)
|
||
|
|
public class GetPetExpInboundInfo implements InboundMessage {
|
||
|
|
}
|