├── .gitignore ├── LICENSE ├── README.md ├── plugin.yml └── src └── shoghicp └── FastTransfer ├── FastTransfer.php ├── PlayerTransferEvent.php └── StrangePacket.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoghicp/FastTransfer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoghicp/FastTransfer/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoghicp/FastTransfer/HEAD/plugin.yml -------------------------------------------------------------------------------- /src/shoghicp/FastTransfer/FastTransfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoghicp/FastTransfer/HEAD/src/shoghicp/FastTransfer/FastTransfer.php -------------------------------------------------------------------------------- /src/shoghicp/FastTransfer/PlayerTransferEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoghicp/FastTransfer/HEAD/src/shoghicp/FastTransfer/PlayerTransferEvent.php -------------------------------------------------------------------------------- /src/shoghicp/FastTransfer/StrangePacket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shoghicp/FastTransfer/HEAD/src/shoghicp/FastTransfer/StrangePacket.php --------------------------------------------------------------------------------