├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── MANIFEST.in ├── README ├── README.md ├── assets ├── MC-Srtike.png ├── MC-Strike2.png └── PKYMK.png ├── doumentation.txt ├── encode.py ├── main.py ├── minecraft_strike ├── __init__.py ├── arg_handler.py ├── client.py ├── server.py └── src │ ├── __init__.py │ ├── arr.py │ ├── hardcode.py │ ├── hardcode2.py │ ├── model.py │ ├── player.py │ ├── playerInfo.py │ ├── result.py │ ├── variable.py │ └── window.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | LICENSE 2 | doumentation.txt 3 | README.md 4 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/README.md -------------------------------------------------------------------------------- /assets/MC-Srtike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/assets/MC-Srtike.png -------------------------------------------------------------------------------- /assets/MC-Strike2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/assets/MC-Strike2.png -------------------------------------------------------------------------------- /assets/PKYMK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/assets/PKYMK.png -------------------------------------------------------------------------------- /doumentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/doumentation.txt -------------------------------------------------------------------------------- /encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/encode.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/main.py -------------------------------------------------------------------------------- /minecraft_strike/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecraft_strike/arg_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/arg_handler.py -------------------------------------------------------------------------------- /minecraft_strike/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/client.py -------------------------------------------------------------------------------- /minecraft_strike/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/server.py -------------------------------------------------------------------------------- /minecraft_strike/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /minecraft_strike/src/arr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/arr.py -------------------------------------------------------------------------------- /minecraft_strike/src/hardcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/hardcode.py -------------------------------------------------------------------------------- /minecraft_strike/src/hardcode2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/hardcode2.py -------------------------------------------------------------------------------- /minecraft_strike/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/model.py -------------------------------------------------------------------------------- /minecraft_strike/src/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/player.py -------------------------------------------------------------------------------- /minecraft_strike/src/playerInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/playerInfo.py -------------------------------------------------------------------------------- /minecraft_strike/src/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/result.py -------------------------------------------------------------------------------- /minecraft_strike/src/variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/variable.py -------------------------------------------------------------------------------- /minecraft_strike/src/window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/minecraft_strike/src/window.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PodSixNet 2 | pyglet==1.2.4 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harsh-98/Minecraft-Strike/HEAD/setup.py --------------------------------------------------------------------------------