Files
2006Scape/2006Scape Server/src/main/java/com/rs2/game/players/Client.java
T
2021-03-11 00:30:16 +00:00

31 lines
721 B
Java

package com.rs2.game.players;
import org.apache.mina.common.IoSession;
import com.rs2.GameConstants;
import com.rs2.util.Stream;
public class Client extends Player {
public Client(IoSession s, int _playerId) {
super(_playerId);
session = s;
outStream = new Stream(new byte[GameConstants.BUFFER_SIZE]);
outStream.currentOffset = 0;
inStream = new Stream(new byte[GameConstants.BUFFER_SIZE]);
inStream.currentOffset = 0;
buffer = new byte[GameConstants.BUFFER_SIZE];
}
//bots
public Client(IoSession s) {
super(-1);
isBot = true;
session = null;
inStream = new Stream(new byte[GameConstants.BUFFER_SIZE]);
inStream.currentOffset = 0;
buffer = new byte[GameConstants.BUFFER_SIZE];
}
}