├── MapEditor.sln ├── MapEditor ├── About.Designer.cs ├── About.cs ├── About.resx ├── Actions │ ├── ActionAdd.cs │ ├── ActionChangeLayer.cs │ ├── ActionDelete.cs │ ├── ActionMove.cs │ └── IAction.cs ├── ColorsCaching.cs ├── Controls.Designer.cs ├── Controls.cs ├── Controls.resx ├── DeviceEventArgs.cs ├── DevicePanel.Designer.cs ├── DevicePanel.cs ├── GarbageCollector.cs ├── GetLRType.Designer.cs ├── GetLRType.cs ├── GetLRType.resx ├── GetMapInfo.Designer.cs ├── GetMapInfo.cs ├── GetMapInfo.resx ├── GetPortalInfo.Designer.cs ├── GetPortalInfo.cs ├── GetPortalInfo.resx ├── GetReactorInfo.Designer.cs ├── GetReactorInfo.cs ├── GetReactorInfo.resx ├── GetRespawnTime.Designer.cs ├── GetRespawnTime.cs ├── GetRespawnTime.resx ├── GetToolTipInfo.Designer.cs ├── GetToolTipInfo.cs ├── GetToolTipInfo.resx ├── GetVersion.Designer.cs ├── GetVersion.cs ├── GetVersion.resx ├── ICached.cs ├── IDrawable.cs ├── ImageViewer.Designer.cs ├── ImageViewer.cs ├── ImageViewer.resx ├── ImportMap.Designer.cs ├── ImportMap.cs ├── ImportMap.resx ├── Map.cs ├── MapBack.cs ├── MapBackFrame.cs ├── MapBackground.cs ├── MapBackgroundSelect.Designer.cs ├── MapBackgroundSelect.cs ├── MapBackgroundSelect.resx ├── MapClock.cs ├── MapCurve.cs ├── MapEditor.Designer.cs ├── MapEditor.cs ├── MapEditor.csproj ├── MapEditor.resx ├── MapFoothold.cs ├── MapFootholdDesign.cs ├── MapFootholdSide.cs ├── MapFootholds.cs ├── MapItem.cs ├── MapLR.cs ├── MapLRDesign.cs ├── MapLRSide.cs ├── MapLayer.cs ├── MapLayerObject.cs ├── MapLife.cs ├── MapMarkSelect.Designer.cs ├── MapMarkSelect.cs ├── MapMarkSelect.resx ├── MapMob.cs ├── MapNPC.cs ├── MapObject.cs ├── MapObjectFrame.cs ├── MapPortal.cs ├── MapReactor.cs ├── MapSeat.cs ├── MapSeatDesign.cs ├── MapSelect.Designer.cs ├── MapSelect.cs ├── MapSelect.resx ├── MapTile.cs ├── MapTileDesign.cs ├── MapTileDesignPotential.cs ├── MapTileSelect.Designer.cs ├── MapTileSelect.cs ├── MapTileSelect.resx ├── MapToolTip.cs ├── MapToolTipCorner.cs ├── MapleCharacter.cs ├── MaplePyhsics.cs ├── NewMapWizard.Designer.cs ├── NewMapWizard.cs ├── NewMapWizard.resx ├── NumericTextBox.cs ├── PatcherCreator.Designer.cs ├── PatcherCreator.cs ├── PatcherCreator.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ResourceExtractor.cs ├── ScrollPanel.cs ├── Simulator.Designer.cs ├── Simulator.cs ├── Simulator.resx ├── ThumbnailController.cs ├── ThumbnailFlowLayoutPanel.cs ├── TilesDesign │ ├── bsc.cs │ ├── edD.cs │ ├── edU.cs │ ├── enH0.cs │ ├── enH1.cs │ ├── enV0.cs │ ├── enV1.cs │ ├── slLD.cs │ ├── slLU.cs │ ├── slRD.cs │ └── slRU.cs ├── ToolStripNumberControl.cs ├── app.config ├── icon.ico └── icon64.ico ├── SomeC++Stuffs ├── AES.cpp ├── AES.h ├── AESOFB.cpp ├── SomeC++Stuffs.vcxproj ├── SomeC++Stuffs.vcxproj.filters └── zlibCompress.cpp ├── WZ.NET ├── Actions │ ├── Create.cs │ ├── Delete.cs │ └── Rebuild.cs ├── BitmapCachingService.cs ├── CachedBitmap.cs ├── Crc32.cs ├── EntryList.cs ├── File.cs ├── Hashlist.cs ├── IMGEntry.cs ├── IMGFile.cs ├── Objects │ ├── WZCanvas.cs │ ├── WZComplex.cs │ ├── WZConvex.cs │ ├── WZDouble.cs │ ├── WZEmpty.cs │ ├── WZFloat.cs │ ├── WZInteger.cs │ ├── WZObjects.cs │ ├── WZProperty.cs │ ├── WZShort.cs │ ├── WZSimpleObject.cs │ ├── WZSound.cs │ ├── WZString.cs │ ├── WZTypeObject.cs │ ├── WZUOL.cs │ └── WZVector.cs ├── Operation │ ├── Add.cs │ ├── Copy.cs │ └── Run.cs ├── Properties │ └── AssemblyInfo.cs ├── WZ.NET.csproj ├── WZDirectory.cs ├── WZFile.cs ├── WZObject.cs ├── WZPatch.cs ├── WZPatchFile.cs ├── WZPatchOperation.cs └── WZWriteable.cs └── zlib ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzio.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── minigzip.c ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zconf.in.h ├── zlib.h ├── zlib.vcxproj ├── zlib.vcxproj.filters ├── zutil.c └── zutil.h /MapEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor.sln -------------------------------------------------------------------------------- /MapEditor/About.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/About.Designer.cs -------------------------------------------------------------------------------- /MapEditor/About.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/About.cs -------------------------------------------------------------------------------- /MapEditor/About.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/About.resx -------------------------------------------------------------------------------- /MapEditor/Actions/ActionAdd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Actions/ActionAdd.cs -------------------------------------------------------------------------------- /MapEditor/Actions/ActionChangeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Actions/ActionChangeLayer.cs -------------------------------------------------------------------------------- /MapEditor/Actions/ActionDelete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Actions/ActionDelete.cs -------------------------------------------------------------------------------- /MapEditor/Actions/ActionMove.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Actions/ActionMove.cs -------------------------------------------------------------------------------- /MapEditor/Actions/IAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Actions/IAction.cs -------------------------------------------------------------------------------- /MapEditor/ColorsCaching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ColorsCaching.cs -------------------------------------------------------------------------------- /MapEditor/Controls.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Controls.Designer.cs -------------------------------------------------------------------------------- /MapEditor/Controls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Controls.cs -------------------------------------------------------------------------------- /MapEditor/Controls.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Controls.resx -------------------------------------------------------------------------------- /MapEditor/DeviceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/DeviceEventArgs.cs -------------------------------------------------------------------------------- /MapEditor/DevicePanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/DevicePanel.Designer.cs -------------------------------------------------------------------------------- /MapEditor/DevicePanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/DevicePanel.cs -------------------------------------------------------------------------------- /MapEditor/GarbageCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GarbageCollector.cs -------------------------------------------------------------------------------- /MapEditor/GetLRType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetLRType.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetLRType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetLRType.cs -------------------------------------------------------------------------------- /MapEditor/GetLRType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetLRType.resx -------------------------------------------------------------------------------- /MapEditor/GetMapInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetMapInfo.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetMapInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetMapInfo.cs -------------------------------------------------------------------------------- /MapEditor/GetMapInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetMapInfo.resx -------------------------------------------------------------------------------- /MapEditor/GetPortalInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetPortalInfo.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetPortalInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetPortalInfo.cs -------------------------------------------------------------------------------- /MapEditor/GetPortalInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetPortalInfo.resx -------------------------------------------------------------------------------- /MapEditor/GetReactorInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetReactorInfo.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetReactorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetReactorInfo.cs -------------------------------------------------------------------------------- /MapEditor/GetReactorInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetReactorInfo.resx -------------------------------------------------------------------------------- /MapEditor/GetRespawnTime.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetRespawnTime.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetRespawnTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetRespawnTime.cs -------------------------------------------------------------------------------- /MapEditor/GetRespawnTime.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetRespawnTime.resx -------------------------------------------------------------------------------- /MapEditor/GetToolTipInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetToolTipInfo.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetToolTipInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetToolTipInfo.cs -------------------------------------------------------------------------------- /MapEditor/GetToolTipInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetToolTipInfo.resx -------------------------------------------------------------------------------- /MapEditor/GetVersion.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetVersion.Designer.cs -------------------------------------------------------------------------------- /MapEditor/GetVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetVersion.cs -------------------------------------------------------------------------------- /MapEditor/GetVersion.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/GetVersion.resx -------------------------------------------------------------------------------- /MapEditor/ICached.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ICached.cs -------------------------------------------------------------------------------- /MapEditor/IDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/IDrawable.cs -------------------------------------------------------------------------------- /MapEditor/ImageViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ImageViewer.Designer.cs -------------------------------------------------------------------------------- /MapEditor/ImageViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ImageViewer.cs -------------------------------------------------------------------------------- /MapEditor/ImageViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ImageViewer.resx -------------------------------------------------------------------------------- /MapEditor/ImportMap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ImportMap.Designer.cs -------------------------------------------------------------------------------- /MapEditor/ImportMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ImportMap.cs -------------------------------------------------------------------------------- /MapEditor/ImportMap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ImportMap.resx -------------------------------------------------------------------------------- /MapEditor/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Map.cs -------------------------------------------------------------------------------- /MapEditor/MapBack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapBack.cs -------------------------------------------------------------------------------- /MapEditor/MapBackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapBackFrame.cs -------------------------------------------------------------------------------- /MapEditor/MapBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapBackground.cs -------------------------------------------------------------------------------- /MapEditor/MapBackgroundSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapBackgroundSelect.Designer.cs -------------------------------------------------------------------------------- /MapEditor/MapBackgroundSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapBackgroundSelect.cs -------------------------------------------------------------------------------- /MapEditor/MapBackgroundSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapBackgroundSelect.resx -------------------------------------------------------------------------------- /MapEditor/MapClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapClock.cs -------------------------------------------------------------------------------- /MapEditor/MapCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapCurve.cs -------------------------------------------------------------------------------- /MapEditor/MapEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapEditor.Designer.cs -------------------------------------------------------------------------------- /MapEditor/MapEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapEditor.cs -------------------------------------------------------------------------------- /MapEditor/MapEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapEditor.csproj -------------------------------------------------------------------------------- /MapEditor/MapEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapEditor.resx -------------------------------------------------------------------------------- /MapEditor/MapFoothold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapFoothold.cs -------------------------------------------------------------------------------- /MapEditor/MapFootholdDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapFootholdDesign.cs -------------------------------------------------------------------------------- /MapEditor/MapFootholdSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapFootholdSide.cs -------------------------------------------------------------------------------- /MapEditor/MapFootholds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapFootholds.cs -------------------------------------------------------------------------------- /MapEditor/MapItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapItem.cs -------------------------------------------------------------------------------- /MapEditor/MapLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapLR.cs -------------------------------------------------------------------------------- /MapEditor/MapLRDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapLRDesign.cs -------------------------------------------------------------------------------- /MapEditor/MapLRSide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapLRSide.cs -------------------------------------------------------------------------------- /MapEditor/MapLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapLayer.cs -------------------------------------------------------------------------------- /MapEditor/MapLayerObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapLayerObject.cs -------------------------------------------------------------------------------- /MapEditor/MapLife.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapLife.cs -------------------------------------------------------------------------------- /MapEditor/MapMarkSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapMarkSelect.Designer.cs -------------------------------------------------------------------------------- /MapEditor/MapMarkSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapMarkSelect.cs -------------------------------------------------------------------------------- /MapEditor/MapMarkSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapMarkSelect.resx -------------------------------------------------------------------------------- /MapEditor/MapMob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapMob.cs -------------------------------------------------------------------------------- /MapEditor/MapNPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapNPC.cs -------------------------------------------------------------------------------- /MapEditor/MapObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapObject.cs -------------------------------------------------------------------------------- /MapEditor/MapObjectFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapObjectFrame.cs -------------------------------------------------------------------------------- /MapEditor/MapPortal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapPortal.cs -------------------------------------------------------------------------------- /MapEditor/MapReactor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapReactor.cs -------------------------------------------------------------------------------- /MapEditor/MapSeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapSeat.cs -------------------------------------------------------------------------------- /MapEditor/MapSeatDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapSeatDesign.cs -------------------------------------------------------------------------------- /MapEditor/MapSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapSelect.Designer.cs -------------------------------------------------------------------------------- /MapEditor/MapSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapSelect.cs -------------------------------------------------------------------------------- /MapEditor/MapSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapSelect.resx -------------------------------------------------------------------------------- /MapEditor/MapTile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapTile.cs -------------------------------------------------------------------------------- /MapEditor/MapTileDesign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapTileDesign.cs -------------------------------------------------------------------------------- /MapEditor/MapTileDesignPotential.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapTileDesignPotential.cs -------------------------------------------------------------------------------- /MapEditor/MapTileSelect.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapTileSelect.Designer.cs -------------------------------------------------------------------------------- /MapEditor/MapTileSelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapTileSelect.cs -------------------------------------------------------------------------------- /MapEditor/MapTileSelect.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapTileSelect.resx -------------------------------------------------------------------------------- /MapEditor/MapToolTip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapToolTip.cs -------------------------------------------------------------------------------- /MapEditor/MapToolTipCorner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapToolTipCorner.cs -------------------------------------------------------------------------------- /MapEditor/MapleCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MapleCharacter.cs -------------------------------------------------------------------------------- /MapEditor/MaplePyhsics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/MaplePyhsics.cs -------------------------------------------------------------------------------- /MapEditor/NewMapWizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/NewMapWizard.Designer.cs -------------------------------------------------------------------------------- /MapEditor/NewMapWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/NewMapWizard.cs -------------------------------------------------------------------------------- /MapEditor/NewMapWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/NewMapWizard.resx -------------------------------------------------------------------------------- /MapEditor/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/NumericTextBox.cs -------------------------------------------------------------------------------- /MapEditor/PatcherCreator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/PatcherCreator.Designer.cs -------------------------------------------------------------------------------- /MapEditor/PatcherCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/PatcherCreator.cs -------------------------------------------------------------------------------- /MapEditor/PatcherCreator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/PatcherCreator.resx -------------------------------------------------------------------------------- /MapEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Program.cs -------------------------------------------------------------------------------- /MapEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MapEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MapEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /MapEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MapEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /MapEditor/ResourceExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ResourceExtractor.cs -------------------------------------------------------------------------------- /MapEditor/ScrollPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ScrollPanel.cs -------------------------------------------------------------------------------- /MapEditor/Simulator.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Simulator.Designer.cs -------------------------------------------------------------------------------- /MapEditor/Simulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Simulator.cs -------------------------------------------------------------------------------- /MapEditor/Simulator.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/Simulator.resx -------------------------------------------------------------------------------- /MapEditor/ThumbnailController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ThumbnailController.cs -------------------------------------------------------------------------------- /MapEditor/ThumbnailFlowLayoutPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ThumbnailFlowLayoutPanel.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/bsc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/bsc.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/edD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/edD.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/edU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/edU.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/enH0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/enH0.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/enH1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/enH1.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/enV0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/enV0.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/enV1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/enV1.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/slLD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/slLD.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/slLU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/slLU.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/slRD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/slRD.cs -------------------------------------------------------------------------------- /MapEditor/TilesDesign/slRU.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/TilesDesign/slRU.cs -------------------------------------------------------------------------------- /MapEditor/ToolStripNumberControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/ToolStripNumberControl.cs -------------------------------------------------------------------------------- /MapEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/app.config -------------------------------------------------------------------------------- /MapEditor/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/icon.ico -------------------------------------------------------------------------------- /MapEditor/icon64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/MapEditor/icon64.ico -------------------------------------------------------------------------------- /SomeC++Stuffs/AES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/SomeC++Stuffs/AES.cpp -------------------------------------------------------------------------------- /SomeC++Stuffs/AES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/SomeC++Stuffs/AES.h -------------------------------------------------------------------------------- /SomeC++Stuffs/AESOFB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/SomeC++Stuffs/AESOFB.cpp -------------------------------------------------------------------------------- /SomeC++Stuffs/SomeC++Stuffs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/SomeC++Stuffs/SomeC++Stuffs.vcxproj -------------------------------------------------------------------------------- /SomeC++Stuffs/SomeC++Stuffs.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/SomeC++Stuffs/SomeC++Stuffs.vcxproj.filters -------------------------------------------------------------------------------- /SomeC++Stuffs/zlibCompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/SomeC++Stuffs/zlibCompress.cpp -------------------------------------------------------------------------------- /WZ.NET/Actions/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Actions/Create.cs -------------------------------------------------------------------------------- /WZ.NET/Actions/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Actions/Delete.cs -------------------------------------------------------------------------------- /WZ.NET/Actions/Rebuild.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Actions/Rebuild.cs -------------------------------------------------------------------------------- /WZ.NET/BitmapCachingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/BitmapCachingService.cs -------------------------------------------------------------------------------- /WZ.NET/CachedBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/CachedBitmap.cs -------------------------------------------------------------------------------- /WZ.NET/Crc32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Crc32.cs -------------------------------------------------------------------------------- /WZ.NET/EntryList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/EntryList.cs -------------------------------------------------------------------------------- /WZ.NET/File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/File.cs -------------------------------------------------------------------------------- /WZ.NET/Hashlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Hashlist.cs -------------------------------------------------------------------------------- /WZ.NET/IMGEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/IMGEntry.cs -------------------------------------------------------------------------------- /WZ.NET/IMGFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/IMGFile.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZCanvas.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZComplex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZComplex.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZConvex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZConvex.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZDouble.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZEmpty.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZFloat.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZInteger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZInteger.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZObjects.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZProperty.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZShort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZShort.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZSimpleObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZSimpleObject.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZSound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZSound.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZString.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZTypeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZTypeObject.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZUOL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZUOL.cs -------------------------------------------------------------------------------- /WZ.NET/Objects/WZVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Objects/WZVector.cs -------------------------------------------------------------------------------- /WZ.NET/Operation/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Operation/Add.cs -------------------------------------------------------------------------------- /WZ.NET/Operation/Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Operation/Copy.cs -------------------------------------------------------------------------------- /WZ.NET/Operation/Run.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Operation/Run.cs -------------------------------------------------------------------------------- /WZ.NET/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WZ.NET/WZ.NET.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZ.NET.csproj -------------------------------------------------------------------------------- /WZ.NET/WZDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZDirectory.cs -------------------------------------------------------------------------------- /WZ.NET/WZFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZFile.cs -------------------------------------------------------------------------------- /WZ.NET/WZObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZObject.cs -------------------------------------------------------------------------------- /WZ.NET/WZPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZPatch.cs -------------------------------------------------------------------------------- /WZ.NET/WZPatchFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZPatchFile.cs -------------------------------------------------------------------------------- /WZ.NET/WZPatchOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZPatchOperation.cs -------------------------------------------------------------------------------- /WZ.NET/WZWriteable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/WZ.NET/WZWriteable.cs -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/gzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/gzio.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/minigzip.c -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zconf.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zconf.in.h -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /zlib/zlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zlib.vcxproj.filters -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/koolkdev/wzmapeditor/HEAD/zlib/zutil.h --------------------------------------------------------------------------------