├── .gitattributes ├── .gitignore ├── Build Executable.bat ├── DAT Texture Wizard Debug.bat ├── DAT Texture Wizard.py ├── GuiSubComponents.py ├── Installers ├── Add 'DAT Texture Wizard' to the context menu.bat ├── Add 'PNG to-from TPL' to the context menu.bat ├── Context menu example.png ├── ReadMe.txt ├── Remove 'DAT Texture Wizard' from the context menu.bat ├── Remove 'PNG to-from TPL' from the context menu.bat └── shortcuts │ ├── 7 │ ├── DAT Texture Wizard.lnk │ └── PNG to-from TPL Converter.lnk │ └── xp │ ├── DAT Texture Wizard.lnk │ └── PNG to-from TPL Converter.lnk ├── LICENSE ├── PNG to-from TPL.bat ├── Program Usage.txt ├── README.md ├── RenderEngine.py ├── appIcon5.ico ├── bin ├── Copyright for pngquant ├── pngquant.exe └── wimgt │ ├── cyggcc_s-1.dll │ ├── cygpng15-15.dll │ ├── cygwin1.dll │ ├── cygz.dll │ └── wimgt.exe ├── hsdFiles.py ├── hsdStructures.py ├── imgs ├── appIcon.png ├── audioIcon.png ├── bg.png ├── bgbg.png ├── canvasGrid.png ├── cathedralBattle.png ├── cccBanner.png ├── charIcon.png ├── colorChooserMask.png ├── cornerArrow.png ├── dndTarget.png ├── fileIcon.png ├── folder.png ├── folderIcon.png ├── gameIdBreakdownImage.png ├── helpWindowDivider.png ├── hoverOverlay.png ├── loading.png ├── magikoopa.png ├── meleeIcon.png ├── musicIcon.png ├── nextDatButton.png ├── noImage.png ├── pannerBanner.png ├── previousDatButton.png ├── searchIcon.png ├── selectionArrow.png ├── selectionArrowL.png ├── selectionArrowR.png ├── stageIcon.png ├── supportDTW.png ├── tree.png └── universe insignias │ ├── CH.png │ ├── Donkey Kong.png │ ├── EarthBound.png │ ├── F-Zero.png │ ├── Fire Emblem.png │ ├── Game & Watch.png │ ├── Ice Climber.png │ ├── Kirby.png │ ├── MH.png │ ├── Mario.png │ ├── Metroid.png │ ├── Pokemon.png │ ├── SSB.png │ ├── Star Fox.png │ ├── The Legend of Zelda.png │ └── Yoshi.png ├── newTkDnD.py ├── png.py ├── setup.py ├── tk └── tkdnd2.7 │ ├── x64 │ ├── libtkdnd2.7.dll │ ├── pkgIndex.tcl │ ├── tkdnd.tcl │ ├── tkdnd_compat.tcl │ ├── tkdnd_generic.tcl │ ├── tkdnd_macosx.tcl │ ├── tkdnd_unix.tcl │ └── tkdnd_windows.tcl │ └── x86 │ ├── libtkdnd2.7.dll │ ├── pkgIndex.tcl │ ├── tkdnd.tcl │ ├── tkdnd_compat.tcl │ ├── tkdnd_generic.tcl │ ├── tkdnd_macosx.tcl │ ├── tkdnd_unix.tcl │ └── tkdnd_windows.tcl ├── tplCodec.py └── xxhash ├── Use these files for 32-bit ├── __init__.py ├── cffi.py └── cpython.pyd ├── __init__.py ├── cffi.py └── cpython.pyd /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/.gitignore -------------------------------------------------------------------------------- /Build Executable.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Build Executable.bat -------------------------------------------------------------------------------- /DAT Texture Wizard Debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/DAT Texture Wizard Debug.bat -------------------------------------------------------------------------------- /DAT Texture Wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/DAT Texture Wizard.py -------------------------------------------------------------------------------- /GuiSubComponents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/GuiSubComponents.py -------------------------------------------------------------------------------- /Installers/Add 'DAT Texture Wizard' to the context menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/Add 'DAT Texture Wizard' to the context menu.bat -------------------------------------------------------------------------------- /Installers/Add 'PNG to-from TPL' to the context menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/Add 'PNG to-from TPL' to the context menu.bat -------------------------------------------------------------------------------- /Installers/Context menu example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/Context menu example.png -------------------------------------------------------------------------------- /Installers/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/ReadMe.txt -------------------------------------------------------------------------------- /Installers/Remove 'DAT Texture Wizard' from the context menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/Remove 'DAT Texture Wizard' from the context menu.bat -------------------------------------------------------------------------------- /Installers/Remove 'PNG to-from TPL' from the context menu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/Remove 'PNG to-from TPL' from the context menu.bat -------------------------------------------------------------------------------- /Installers/shortcuts/7/DAT Texture Wizard.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/shortcuts/7/DAT Texture Wizard.lnk -------------------------------------------------------------------------------- /Installers/shortcuts/7/PNG to-from TPL Converter.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/shortcuts/7/PNG to-from TPL Converter.lnk -------------------------------------------------------------------------------- /Installers/shortcuts/xp/DAT Texture Wizard.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/shortcuts/xp/DAT Texture Wizard.lnk -------------------------------------------------------------------------------- /Installers/shortcuts/xp/PNG to-from TPL Converter.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Installers/shortcuts/xp/PNG to-from TPL Converter.lnk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/LICENSE -------------------------------------------------------------------------------- /PNG to-from TPL.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/PNG to-from TPL.bat -------------------------------------------------------------------------------- /Program Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/Program Usage.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/README.md -------------------------------------------------------------------------------- /RenderEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/RenderEngine.py -------------------------------------------------------------------------------- /appIcon5.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/appIcon5.ico -------------------------------------------------------------------------------- /bin/Copyright for pngquant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/Copyright for pngquant -------------------------------------------------------------------------------- /bin/pngquant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/pngquant.exe -------------------------------------------------------------------------------- /bin/wimgt/cyggcc_s-1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/wimgt/cyggcc_s-1.dll -------------------------------------------------------------------------------- /bin/wimgt/cygpng15-15.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/wimgt/cygpng15-15.dll -------------------------------------------------------------------------------- /bin/wimgt/cygwin1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/wimgt/cygwin1.dll -------------------------------------------------------------------------------- /bin/wimgt/cygz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/wimgt/cygz.dll -------------------------------------------------------------------------------- /bin/wimgt/wimgt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/bin/wimgt/wimgt.exe -------------------------------------------------------------------------------- /hsdFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/hsdFiles.py -------------------------------------------------------------------------------- /hsdStructures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/hsdStructures.py -------------------------------------------------------------------------------- /imgs/appIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/appIcon.png -------------------------------------------------------------------------------- /imgs/audioIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/audioIcon.png -------------------------------------------------------------------------------- /imgs/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/bg.png -------------------------------------------------------------------------------- /imgs/bgbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/bgbg.png -------------------------------------------------------------------------------- /imgs/canvasGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/canvasGrid.png -------------------------------------------------------------------------------- /imgs/cathedralBattle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/cathedralBattle.png -------------------------------------------------------------------------------- /imgs/cccBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/cccBanner.png -------------------------------------------------------------------------------- /imgs/charIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/charIcon.png -------------------------------------------------------------------------------- /imgs/colorChooserMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/colorChooserMask.png -------------------------------------------------------------------------------- /imgs/cornerArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/cornerArrow.png -------------------------------------------------------------------------------- /imgs/dndTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/dndTarget.png -------------------------------------------------------------------------------- /imgs/fileIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/fileIcon.png -------------------------------------------------------------------------------- /imgs/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/folder.png -------------------------------------------------------------------------------- /imgs/folderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/folderIcon.png -------------------------------------------------------------------------------- /imgs/gameIdBreakdownImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/gameIdBreakdownImage.png -------------------------------------------------------------------------------- /imgs/helpWindowDivider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/helpWindowDivider.png -------------------------------------------------------------------------------- /imgs/hoverOverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/hoverOverlay.png -------------------------------------------------------------------------------- /imgs/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/loading.png -------------------------------------------------------------------------------- /imgs/magikoopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/magikoopa.png -------------------------------------------------------------------------------- /imgs/meleeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/meleeIcon.png -------------------------------------------------------------------------------- /imgs/musicIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/musicIcon.png -------------------------------------------------------------------------------- /imgs/nextDatButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/nextDatButton.png -------------------------------------------------------------------------------- /imgs/noImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/noImage.png -------------------------------------------------------------------------------- /imgs/pannerBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/pannerBanner.png -------------------------------------------------------------------------------- /imgs/previousDatButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/previousDatButton.png -------------------------------------------------------------------------------- /imgs/searchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/searchIcon.png -------------------------------------------------------------------------------- /imgs/selectionArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/selectionArrow.png -------------------------------------------------------------------------------- /imgs/selectionArrowL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/selectionArrowL.png -------------------------------------------------------------------------------- /imgs/selectionArrowR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/selectionArrowR.png -------------------------------------------------------------------------------- /imgs/stageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/stageIcon.png -------------------------------------------------------------------------------- /imgs/supportDTW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/supportDTW.png -------------------------------------------------------------------------------- /imgs/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/tree.png -------------------------------------------------------------------------------- /imgs/universe insignias/CH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/CH.png -------------------------------------------------------------------------------- /imgs/universe insignias/Donkey Kong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Donkey Kong.png -------------------------------------------------------------------------------- /imgs/universe insignias/EarthBound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/EarthBound.png -------------------------------------------------------------------------------- /imgs/universe insignias/F-Zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/F-Zero.png -------------------------------------------------------------------------------- /imgs/universe insignias/Fire Emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Fire Emblem.png -------------------------------------------------------------------------------- /imgs/universe insignias/Game & Watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Game & Watch.png -------------------------------------------------------------------------------- /imgs/universe insignias/Ice Climber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Ice Climber.png -------------------------------------------------------------------------------- /imgs/universe insignias/Kirby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Kirby.png -------------------------------------------------------------------------------- /imgs/universe insignias/MH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/MH.png -------------------------------------------------------------------------------- /imgs/universe insignias/Mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Mario.png -------------------------------------------------------------------------------- /imgs/universe insignias/Metroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Metroid.png -------------------------------------------------------------------------------- /imgs/universe insignias/Pokemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Pokemon.png -------------------------------------------------------------------------------- /imgs/universe insignias/SSB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/SSB.png -------------------------------------------------------------------------------- /imgs/universe insignias/Star Fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Star Fox.png -------------------------------------------------------------------------------- /imgs/universe insignias/The Legend of Zelda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/The Legend of Zelda.png -------------------------------------------------------------------------------- /imgs/universe insignias/Yoshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/imgs/universe insignias/Yoshi.png -------------------------------------------------------------------------------- /newTkDnD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/newTkDnD.py -------------------------------------------------------------------------------- /png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/png.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/setup.py -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/libtkdnd2.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/libtkdnd2.7.dll -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/pkgIndex.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/tkdnd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/tkdnd.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/tkdnd_compat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/tkdnd_compat.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/tkdnd_generic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/tkdnd_generic.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/tkdnd_macosx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/tkdnd_macosx.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/tkdnd_unix.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/tkdnd_unix.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x64/tkdnd_windows.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x64/tkdnd_windows.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/libtkdnd2.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/libtkdnd2.7.dll -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/pkgIndex.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/tkdnd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/tkdnd.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/tkdnd_compat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/tkdnd_compat.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/tkdnd_generic.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/tkdnd_generic.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/tkdnd_macosx.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/tkdnd_macosx.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/tkdnd_unix.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/tkdnd_unix.tcl -------------------------------------------------------------------------------- /tk/tkdnd2.7/x86/tkdnd_windows.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tk/tkdnd2.7/x86/tkdnd_windows.tcl -------------------------------------------------------------------------------- /tplCodec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/tplCodec.py -------------------------------------------------------------------------------- /xxhash/Use these files for 32-bit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/xxhash/Use these files for 32-bit/__init__.py -------------------------------------------------------------------------------- /xxhash/Use these files for 32-bit/cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/xxhash/Use these files for 32-bit/cffi.py -------------------------------------------------------------------------------- /xxhash/Use these files for 32-bit/cpython.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/xxhash/Use these files for 32-bit/cpython.pyd -------------------------------------------------------------------------------- /xxhash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/xxhash/__init__.py -------------------------------------------------------------------------------- /xxhash/cffi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/xxhash/cffi.py -------------------------------------------------------------------------------- /xxhash/cpython.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DRGN-DRC/DAT-Texture-Wizard/HEAD/xxhash/cpython.pyd --------------------------------------------------------------------------------