back_recharge
parent
36ca79085d
commit
ca8b94eab9
|
|
@ -17,7 +17,7 @@ dependencies {
|
||||||
|
|
||||||
compile("org.javassist:javassist:3.18.2-GA")
|
compile("org.javassist:javassist:3.18.2-GA")
|
||||||
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
|
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.25'
|
||||||
compile("io.netty:netty-all:4.0.21.Final")
|
compile("io.netty:netty-all:4.1.6.Final")
|
||||||
compile("com.google.protobuf:protobuf-java:2.5.0")
|
compile("com.google.protobuf:protobuf-java:2.5.0")
|
||||||
compile 'com.google.guava:guava:23.5-android'
|
compile 'com.google.guava:guava:23.5-android'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ dependencies {
|
||||||
compile("org.springframework.boot:spring-boot:1.5.9.RELEASE")
|
compile("org.springframework.boot:spring-boot:1.5.9.RELEASE")
|
||||||
compile("org.springframework.boot:spring-boot-starter-test:1.5.9.RELEASE")
|
compile("org.springframework.boot:spring-boot-starter-test:1.5.9.RELEASE")
|
||||||
compile("org.springframework.boot:spring-boot-starter-data-redis:1.5.9.RELEASE")
|
compile("org.springframework.boot:spring-boot-starter-data-redis:1.5.9.RELEASE")
|
||||||
compile("io.netty:netty-all:4.0.21.Final")
|
compile("io.netty:netty-all:4.1.6.Final")
|
||||||
compile("com.google.protobuf:protobuf-java:2.5.0")
|
compile("com.google.protobuf:protobuf-java:2.5.0")
|
||||||
compile("com.fasterxml.jackson.core:jackson-core:2.3.1")
|
compile("com.fasterxml.jackson.core:jackson-core:2.3.1")
|
||||||
compile("com.fasterxml.jackson.core:jackson-databind:2.3.3")
|
compile("com.fasterxml.jackson.core:jackson-databind:2.3.3")
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ package com.ljsd.jieling.logic.fight;
|
||||||
|
|
||||||
import com.ljsd.jieling.config.SAdventureConfig;
|
import com.ljsd.jieling.config.SAdventureConfig;
|
||||||
import com.ljsd.jieling.config.SAdventureSetting;
|
import com.ljsd.jieling.config.SAdventureSetting;
|
||||||
import com.ljsd.jieling.config.SCHero;
|
|
||||||
import com.ljsd.jieling.logic.dao.*;
|
import com.ljsd.jieling.logic.dao.*;
|
||||||
import com.ljsd.jieling.logic.hero.HeroLogic;
|
import com.ljsd.jieling.logic.hero.HeroLogic;
|
||||||
import com.ljsd.jieling.network.session.ISession;
|
import com.ljsd.jieling.network.session.ISession;
|
||||||
|
|
|
||||||
|
|
@ -324,8 +324,9 @@ public class ProtocolsManager implements ProtocolsAbstract {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void readIdel(GameSession gameSession) {
|
public void readIdel(GameSession gameSession) {
|
||||||
final ISession session = (ISession) gameSession;
|
// TODO
|
||||||
readIdea(session);
|
// final ISession session = (ISession) gameSession;
|
||||||
|
// readIdea(session);
|
||||||
}
|
}
|
||||||
|
|
||||||
public BaseHandler getHandler(MessageTypeProto.MessageType messageType) {
|
public BaseHandler getHandler(MessageTypeProto.MessageType messageType) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue