├── LICENSE.md ├── README.MD └── X64Dbg_editor ├── Editor_x64dbg.py ├── __init__.py ├── icons ├── ico.py ├── iconf.py ├── icons3.py └── iconsmore.py └── python.api /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/README.MD -------------------------------------------------------------------------------- /X64Dbg_editor/Editor_x64dbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/X64Dbg_editor/Editor_x64dbg.py -------------------------------------------------------------------------------- /X64Dbg_editor/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Storm Shadow' -------------------------------------------------------------------------------- /X64Dbg_editor/icons/ico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/X64Dbg_editor/icons/ico.py -------------------------------------------------------------------------------- /X64Dbg_editor/icons/iconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/X64Dbg_editor/icons/iconf.py -------------------------------------------------------------------------------- /X64Dbg_editor/icons/icons3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/X64Dbg_editor/icons/icons3.py -------------------------------------------------------------------------------- /X64Dbg_editor/icons/iconsmore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/X64Dbg_editor/icons/iconsmore.py -------------------------------------------------------------------------------- /X64Dbg_editor/python.api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techbliss/X64dbg_script_editor/HEAD/X64Dbg_editor/python.api --------------------------------------------------------------------------------