mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-05 16:49:06 +00:00
31 lines
721 B
Java
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];
|
|
}
|
|
|
|
}
|