Files
bl/common/core/info/misc/SystemTimeInboundInfo.java

13 lines
489 B
Go
Raw Normal View History

package org.nieo.seerproject.common.net.info.misc;
import org.nieo.seerproject.common.annotations.InboundMessageType;
import org.nieo.seerproject.common.net.InboundMessage;
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
import javax.annotation.Nonnull;
@InboundMessageType(MessageCommandIDRegistry.System_Time)
public class SystemTimeInboundInfo implements InboundMessage {
public static final @Nonnull SystemTimeInboundInfo INSTANCE = new SystemTimeInboundInfo();
}