KickPlayer() public method

public KickPlayer ( Player player, int pos ) : void
player Player
pos int
return void
示例#1
0
        private void OnKick(BinaryReader packet)
        {
            int pos = packet.ReadByte();

            Game.KickPlayer(this, pos);
        }
示例#2
0
        private void OnKick(GameClientPacket packet)
        {
            int pos = packet.ReadByte();

            Game.KickPlayer(this, pos);
        }