Files
bl/common/core/info/battle/UseSkillOutboundInfo.java

13 lines
526 B
Go
Raw Normal View History

package org.nieo.seerproject.common.net.info.battle;
import org.nieo.seerproject.common.annotations.OutboundMessageType;
import org.nieo.seerproject.common.annotations.serialize.AutoCodec;
import org.nieo.seerproject.common.net.MessageCommandIDRegistry;
import org.nieo.seerproject.common.net.OutboundMessage;
@AutoCodec
@OutboundMessageType(MessageCommandIDRegistry.Use_Skill)
public class UseSkillOutboundInfo implements OutboundMessage {
public static final UseSkillOutboundInfo INSTANCE = new UseSkillOutboundInfo();
}