├── .gitignore ├── Images ├── FolderIcon.png ├── FolderIconSmall.png ├── SOR4Explorer.ico ├── SOR4Explorer.png ├── SheetIconSmall.png ├── bars.png ├── save.png └── trash.png ├── LICENSE ├── README.md ├── SOR4Explorer.csproj ├── SOR4Explorer.sln ├── Src ├── ContextMenu.cs ├── Controls │ └── BlackToolStrip.cs ├── Data.cs ├── DataLibrary.cs ├── DataLoader.cs ├── DraggableImages.cs ├── Extensions │ ├── BufferedListView.cs │ ├── BufferedTreeView.cs │ └── GraphicExtensions.cs ├── Forms │ ├── DataViewForm.cs │ ├── ExplorerForm.cs │ └── ImagePreviewForm.cs ├── Program.cs ├── Settings.cs ├── TextureInfo.cs ├── TextureLibrary.cs ├── TextureList.cs └── TextureLoader.cs └── TODO /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/FolderIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/FolderIcon.png -------------------------------------------------------------------------------- /Images/FolderIconSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/FolderIconSmall.png -------------------------------------------------------------------------------- /Images/SOR4Explorer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/SOR4Explorer.ico -------------------------------------------------------------------------------- /Images/SOR4Explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/SOR4Explorer.png -------------------------------------------------------------------------------- /Images/SheetIconSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/SheetIconSmall.png -------------------------------------------------------------------------------- /Images/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/bars.png -------------------------------------------------------------------------------- /Images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/save.png -------------------------------------------------------------------------------- /Images/trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Images/trash.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/README.md -------------------------------------------------------------------------------- /SOR4Explorer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/SOR4Explorer.csproj -------------------------------------------------------------------------------- /SOR4Explorer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/SOR4Explorer.sln -------------------------------------------------------------------------------- /Src/ContextMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/ContextMenu.cs -------------------------------------------------------------------------------- /Src/Controls/BlackToolStrip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Controls/BlackToolStrip.cs -------------------------------------------------------------------------------- /Src/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Data.cs -------------------------------------------------------------------------------- /Src/DataLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/DataLibrary.cs -------------------------------------------------------------------------------- /Src/DataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/DataLoader.cs -------------------------------------------------------------------------------- /Src/DraggableImages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/DraggableImages.cs -------------------------------------------------------------------------------- /Src/Extensions/BufferedListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Extensions/BufferedListView.cs -------------------------------------------------------------------------------- /Src/Extensions/BufferedTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Extensions/BufferedTreeView.cs -------------------------------------------------------------------------------- /Src/Extensions/GraphicExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Extensions/GraphicExtensions.cs -------------------------------------------------------------------------------- /Src/Forms/DataViewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Forms/DataViewForm.cs -------------------------------------------------------------------------------- /Src/Forms/ExplorerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Forms/ExplorerForm.cs -------------------------------------------------------------------------------- /Src/Forms/ImagePreviewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Forms/ImagePreviewForm.cs -------------------------------------------------------------------------------- /Src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Program.cs -------------------------------------------------------------------------------- /Src/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/Settings.cs -------------------------------------------------------------------------------- /Src/TextureInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/TextureInfo.cs -------------------------------------------------------------------------------- /Src/TextureLibrary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/TextureLibrary.cs -------------------------------------------------------------------------------- /Src/TextureList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/TextureList.cs -------------------------------------------------------------------------------- /Src/TextureLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/Src/TextureLoader.cs -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jlcebrian/SOR4Explorer/HEAD/TODO --------------------------------------------------------------------------------