├── Design ├── Action.jpg ├── ClientList.jpg ├── Files.jpg ├── Files_Real.jpg ├── Network.jpg ├── Screen.jpg ├── Screen_Real.jpg ├── Terminal.jpg └── Terminal_Real.jpg ├── LICENSE ├── README.md ├── assets ├── action_editor.ico ├── add.png ├── client_list.ico └── select.ico ├── client.py ├── config.json ├── gui ├── action.py ├── files.py ├── network.py ├── screen.py ├── setting.py ├── terminal.py └── widgets.py ├── libs ├── action.py ├── api.py ├── config.py └── packets.py ├── requirements.txt └── server.py /Design/Action.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Action.jpg -------------------------------------------------------------------------------- /Design/ClientList.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/ClientList.jpg -------------------------------------------------------------------------------- /Design/Files.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Files.jpg -------------------------------------------------------------------------------- /Design/Files_Real.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Files_Real.jpg -------------------------------------------------------------------------------- /Design/Network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Network.jpg -------------------------------------------------------------------------------- /Design/Screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Screen.jpg -------------------------------------------------------------------------------- /Design/Screen_Real.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Screen_Real.jpg -------------------------------------------------------------------------------- /Design/Terminal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Terminal.jpg -------------------------------------------------------------------------------- /Design/Terminal_Real.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/Design/Terminal_Real.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/README.md -------------------------------------------------------------------------------- /assets/action_editor.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/assets/action_editor.ico -------------------------------------------------------------------------------- /assets/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/assets/add.png -------------------------------------------------------------------------------- /assets/client_list.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/assets/client_list.ico -------------------------------------------------------------------------------- /assets/select.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/assets/select.ico -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/client.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/config.json -------------------------------------------------------------------------------- /gui/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/action.py -------------------------------------------------------------------------------- /gui/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/files.py -------------------------------------------------------------------------------- /gui/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/network.py -------------------------------------------------------------------------------- /gui/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/screen.py -------------------------------------------------------------------------------- /gui/setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/setting.py -------------------------------------------------------------------------------- /gui/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/terminal.py -------------------------------------------------------------------------------- /gui/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/gui/widgets.py -------------------------------------------------------------------------------- /libs/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/libs/action.py -------------------------------------------------------------------------------- /libs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/libs/api.py -------------------------------------------------------------------------------- /libs/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/libs/config.py -------------------------------------------------------------------------------- /libs/packets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/libs/packets.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hite4044/ClassOneComputerKiller/HEAD/server.py --------------------------------------------------------------------------------