├── .config └── dotnet-tools.json ├── .csharpierignore ├── .editorconfig ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── BuildShared.props ├── LICENSE ├── Lumper.sln ├── NLog.config ├── README.md ├── devassets ├── maps │ ├── csgo │ │ ├── lumpertest.vmf │ │ └── lumpertest_csgo.bsp │ ├── css │ │ ├── lumpertest.vmf │ │ ├── lumpertest_css_compressed.bsp │ │ └── lumpertest_css_nocompress.bsp │ ├── mom │ │ ├── lumpertest.vmf │ │ └── lumpertest_mom.bsp │ └── tf2 │ │ ├── lumpertest.vmf │ │ ├── lumpertest_tf2_compressed.bsp │ │ └── lumpertest_tf2_nocompress.bsp └── stripper │ ├── lumpertest.cfg │ ├── surf.cfg │ ├── surf_rebel_scaz.cfg │ └── test.cfg ├── images ├── Lumper.svg ├── entity_editor.png ├── jobs.png ├── pakfile_explorer.png └── texture_browser.png ├── resources ├── AssetManifest.rsv ├── EntityRules_Momentum.json └── verifier_index.rsv ├── scripts ├── FetchEntityRules.py ├── RegisterLumperFileAssociation.ps1 └── RegisterLumperURLProtocol.ps1 └── src ├── Lumper.CLI ├── CommandLineOptions.cs ├── Lumper.CLI.csproj └── Program.cs ├── Lumper.Lib ├── AssetManifest │ └── AssetManifest.cs ├── BSP │ ├── BspFile.cs │ ├── Enum │ │ ├── BspLumpType.cs │ │ ├── DesiredCompression.cs │ │ ├── GameLumpType.cs │ │ ├── StaticPropVersion.cs │ │ └── SurfaceFlag.cs │ ├── IO │ │ ├── BspFileReader.cs │ │ ├── BspFileWriter.cs │ │ ├── BspLumpHeader.cs │ │ ├── GameLumpHeader.cs │ │ ├── GameLumpReader.cs │ │ ├── GameLumpWriter.cs │ │ ├── IoHandler.cs │ │ ├── LumpHeaderInfo.cs │ │ ├── LumpReader.cs │ │ └── LumpWriter.cs │ ├── JsonContractResolver.cs │ ├── Lumps │ │ ├── BspLumps │ │ │ ├── EntityLump.cs │ │ │ ├── GameLump.cs │ │ │ ├── PakFileLump.Refactoring.cs │ │ │ ├── PakFileLump.cs │ │ │ ├── TexDataLump.cs │ │ │ ├── TexDataStringDataLump.cs │ │ │ ├── TexDataStringTableLump.cs │ │ │ └── TexInfoLump.cs │ │ ├── FileBackedLump.cs │ │ ├── FixedLump.cs │ │ ├── GameLumps │ │ │ ├── Sprp.cs │ │ │ ├── StaticPropDictLump.cs │ │ │ ├── StaticPropLeafLump.cs │ │ │ └── StaticPropLump.cs │ │ ├── Lump.cs │ │ ├── ManagedLump.cs │ │ └── UnmanagedLump.cs │ └── Struct │ │ ├── Angle.cs │ │ ├── Entity.cs │ │ ├── EntityIO.cs │ │ ├── PakFileEntry.cs │ │ ├── StaticProp.cs │ │ ├── TexData.cs │ │ └── TexInfo.cs ├── EntityRules │ └── EntityRule.cs ├── ExtensionMethods │ └── ExtensionMethods.cs ├── Jobs │ ├── AddSkyOcclusionFlagJob.cs │ ├── Job.cs │ ├── JobProgress.cs │ ├── RemoveAssetJob.cs │ ├── ReplaceTextureJob.cs │ ├── RunExternalToolJob.cs │ ├── StripperFileJob.cs │ └── StripperTextJob.cs ├── Lumper.Lib.csproj ├── RequiredGames │ └── RequiredGames.cs └── Stripper │ └── StripperConfig.cs ├── Lumper.Test ├── AddSkyboxOcclusionFlagTests.cs ├── Lumper.Test.csproj ├── PakfileRefactoringTests.cs ├── RemoveAssetJobTests.cs ├── StripperConfigTest.cs └── TestUtils.cs └── Lumper.UI ├── .gitignore ├── App.axaml ├── App.axaml.cs ├── Assets ├── Fonts │ ├── JetBrains_Mono │ │ ├── JetBrainsMono-Bold.ttf │ │ ├── JetBrainsMono-BoldItalic.ttf │ │ ├── JetBrainsMono-ExtraBold.ttf │ │ ├── JetBrainsMono-ExtraBoldItalic.ttf │ │ ├── JetBrainsMono-Italic.ttf │ │ ├── JetBrainsMono-Light.ttf │ │ ├── JetBrainsMono-LightItalic.ttf │ │ ├── JetBrainsMono-Medium.ttf │ │ ├── JetBrainsMono-MediumItalic.ttf │ │ ├── JetBrainsMono-Regular.ttf │ │ ├── JetBrainsMono-SemiBold.ttf │ │ ├── JetBrainsMono-SemiBoldItalic.ttf │ │ └── OFL.txt │ └── Roboto │ │ ├── LICENSE.txt │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ └── Roboto-Regular.ttf └── Images │ ├── Lumper.ico │ ├── Lumper.png │ └── TransparentBackground.png ├── Controls ├── ClearableTextBox.axaml └── ClearableTextBox.axaml.cs ├── Converters ├── BitmapAssetValueConverter.cs ├── FileSizeConverter.cs ├── JobStatusConverter.cs └── PercentConverter.cs ├── FodyWeavers.xml ├── JsonSuspensionDriver.cs ├── Lumper.UI.csproj ├── ObservableExceptionHandler.cs ├── Program.cs ├── Services ├── BspService.cs ├── GameSyncService.cs ├── PageService.cs ├── StateService.cs └── UpdaterService.cs ├── Styles ├── ButtonSpinner.axaml └── Styles.axaml ├── Utils.cs ├── ViewLocator.cs ├── ViewModels ├── BspInfo │ └── BspInfoViewModel.cs ├── LogViewer │ └── LogViewerViewModel.cs ├── MainWindowViewModel.cs ├── Pages │ ├── EntityEditor │ │ ├── EntityEditorFiltersViewModel.cs │ │ ├── EntityEditorTabViewModel.cs │ │ └── EntityEditorViewModel.cs │ ├── EntityReview │ │ └── EntityReviewViewModel.cs │ ├── Jobs │ │ ├── AddSkyOcclusionFlagJobViewModel.cs │ │ ├── JobMenuItem.cs │ │ ├── JobViewModel.cs │ │ ├── JobsViewModel.cs │ │ ├── RemoveAssetJobViewModel.cs │ │ ├── ReplaceTextureJobViewModel.cs │ │ ├── RunExternalToolJobViewModel.cs │ │ ├── StripperFileJobViewModel.cs │ │ └── StripperTextJobViewModel.cs │ ├── PakfileExplorer │ │ ├── PakfileExplorerViewModel.cs │ │ └── PakfileTreeViewModel.cs │ ├── RawEntities │ │ └── RawEntitiesViewModel.cs │ ├── RequiredGames │ │ └── RequiredGamesViewModel.cs │ └── VtfBrowser │ │ └── VtfBrowserViewModel.cs ├── Shared │ ├── BspNode.cs │ ├── Entity │ │ ├── EntityLumpViewModel.cs │ │ ├── EntityPropertyViewModel.cs │ │ └── EntityViewModel.cs │ ├── LumpViewModel.cs │ ├── Pakfile │ │ ├── PakfileEntryTextViewModel.cs │ │ ├── PakfileEntryViewModel.cs │ │ ├── PakfileEntryVtfViewModel.cs │ │ └── PakfileLumpViewModel.cs │ └── Vtf │ │ └── VtfFileViewModel.cs └── ViewModel.cs └── Views ├── AboutDialog.axaml ├── AboutDialog.axaml.cs ├── BspInfo ├── BspInfoView.axaml └── BspInfoView.axaml.cs ├── IoProgressDialog.axaml ├── IoProgressDialog.axaml.cs ├── LogViewer ├── LogViewerView.axaml └── LogViewerView.axaml.cs ├── MainWindow.axaml ├── MainWindow.axaml.cs ├── Pages ├── EntityEditor │ ├── EntityEditorView.axaml │ └── EntityEditorView.axaml.cs ├── EntityReview │ ├── EntityReviewView.axaml │ └── EntityReviewView.axaml.cs ├── Jobs │ ├── AddSkyOcclusionFlagJobView.axaml │ ├── AddSkyOcclusionFlagJobView.axaml.cs │ ├── JobView.axaml │ ├── JobView.axaml.cs │ ├── JobsView.axaml │ ├── JobsView.axaml.cs │ ├── RemoveAssetJobView.axaml │ ├── RemoveAssetJobView.axaml.cs │ ├── ReplaceTextureJobView.axaml │ ├── ReplaceTextureJobView.axaml.cs │ ├── RunExternalToolJobView.axaml │ ├── RunExternalToolJobView.axaml.cs │ ├── StripperFileJobView.axaml │ ├── StripperFileJobView.axaml.cs │ ├── StripperTextJobView.axaml │ └── StripperTextJobView.axaml.cs ├── PakfileExplorer │ ├── PakfileExplorerView.axaml │ └── PakfileExplorerView.axaml.cs ├── RawEntities │ ├── RawEntitiesView.axaml │ └── RawEntitiesView.axaml.cs ├── RequiredGames │ ├── RequiredGamesView.axaml │ └── RequiredGamesView.axaml.cs └── VtfBrowser │ ├── VtfBrowserView.axaml │ └── VtfBrowserView.axaml.cs └── Shared ├── Pakfile ├── PakfileEntryTextView.axaml ├── PakfileEntryTextView.axaml.cs ├── PakfileEntryVtfView.axaml └── PakfileEntryVtfView.axaml.cs ├── VtfImageWindow.axaml └── VtfImageWindow.axaml.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.csharpierignore: -------------------------------------------------------------------------------- 1 | src/Dependencies/ 2 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/.gitmodules -------------------------------------------------------------------------------- /BuildShared.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/BuildShared.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/LICENSE -------------------------------------------------------------------------------- /Lumper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/Lumper.sln -------------------------------------------------------------------------------- /NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/NLog.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/README.md -------------------------------------------------------------------------------- /devassets/maps/csgo/lumpertest.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/csgo/lumpertest.vmf -------------------------------------------------------------------------------- /devassets/maps/csgo/lumpertest_csgo.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/csgo/lumpertest_csgo.bsp -------------------------------------------------------------------------------- /devassets/maps/css/lumpertest.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/css/lumpertest.vmf -------------------------------------------------------------------------------- /devassets/maps/css/lumpertest_css_compressed.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/css/lumpertest_css_compressed.bsp -------------------------------------------------------------------------------- /devassets/maps/css/lumpertest_css_nocompress.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/css/lumpertest_css_nocompress.bsp -------------------------------------------------------------------------------- /devassets/maps/mom/lumpertest.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/mom/lumpertest.vmf -------------------------------------------------------------------------------- /devassets/maps/mom/lumpertest_mom.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/mom/lumpertest_mom.bsp -------------------------------------------------------------------------------- /devassets/maps/tf2/lumpertest.vmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/tf2/lumpertest.vmf -------------------------------------------------------------------------------- /devassets/maps/tf2/lumpertest_tf2_compressed.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/tf2/lumpertest_tf2_compressed.bsp -------------------------------------------------------------------------------- /devassets/maps/tf2/lumpertest_tf2_nocompress.bsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/maps/tf2/lumpertest_tf2_nocompress.bsp -------------------------------------------------------------------------------- /devassets/stripper/lumpertest.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/stripper/lumpertest.cfg -------------------------------------------------------------------------------- /devassets/stripper/surf.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/stripper/surf.cfg -------------------------------------------------------------------------------- /devassets/stripper/surf_rebel_scaz.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/stripper/surf_rebel_scaz.cfg -------------------------------------------------------------------------------- /devassets/stripper/test.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/devassets/stripper/test.cfg -------------------------------------------------------------------------------- /images/Lumper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/images/Lumper.svg -------------------------------------------------------------------------------- /images/entity_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/images/entity_editor.png -------------------------------------------------------------------------------- /images/jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/images/jobs.png -------------------------------------------------------------------------------- /images/pakfile_explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/images/pakfile_explorer.png -------------------------------------------------------------------------------- /images/texture_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/images/texture_browser.png -------------------------------------------------------------------------------- /resources/AssetManifest.rsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/resources/AssetManifest.rsv -------------------------------------------------------------------------------- /resources/EntityRules_Momentum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/resources/EntityRules_Momentum.json -------------------------------------------------------------------------------- /resources/verifier_index.rsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/resources/verifier_index.rsv -------------------------------------------------------------------------------- /scripts/FetchEntityRules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/scripts/FetchEntityRules.py -------------------------------------------------------------------------------- /scripts/RegisterLumperFileAssociation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/scripts/RegisterLumperFileAssociation.ps1 -------------------------------------------------------------------------------- /scripts/RegisterLumperURLProtocol.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/scripts/RegisterLumperURLProtocol.ps1 -------------------------------------------------------------------------------- /src/Lumper.CLI/CommandLineOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.CLI/CommandLineOptions.cs -------------------------------------------------------------------------------- /src/Lumper.CLI/Lumper.CLI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.CLI/Lumper.CLI.csproj -------------------------------------------------------------------------------- /src/Lumper.CLI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.CLI/Program.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/AssetManifest/AssetManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/AssetManifest/AssetManifest.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/BspFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/BspFile.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Enum/BspLumpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Enum/BspLumpType.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Enum/DesiredCompression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Enum/DesiredCompression.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Enum/GameLumpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Enum/GameLumpType.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Enum/StaticPropVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Enum/StaticPropVersion.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Enum/SurfaceFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Enum/SurfaceFlag.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/BspFileReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/BspFileReader.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/BspFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/BspFileWriter.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/BspLumpHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/BspLumpHeader.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/GameLumpHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/GameLumpHeader.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/GameLumpReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/GameLumpReader.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/GameLumpWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/GameLumpWriter.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/IoHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/IoHandler.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/LumpHeaderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/LumpHeaderInfo.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/LumpReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/LumpReader.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/IO/LumpWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/IO/LumpWriter.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/JsonContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/JsonContractResolver.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/EntityLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/EntityLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/GameLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/GameLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/PakFileLump.Refactoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/PakFileLump.Refactoring.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/PakFileLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/PakFileLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/TexDataLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/TexDataLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/TexDataStringDataLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/TexDataStringDataLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/TexDataStringTableLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/TexDataStringTableLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/BspLumps/TexInfoLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/BspLumps/TexInfoLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/FileBackedLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/FileBackedLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/FixedLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/FixedLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/GameLumps/Sprp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/GameLumps/Sprp.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/GameLumps/StaticPropDictLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/GameLumps/StaticPropDictLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/GameLumps/StaticPropLeafLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/GameLumps/StaticPropLeafLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/GameLumps/StaticPropLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/GameLumps/StaticPropLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/Lump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/Lump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/ManagedLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/ManagedLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Lumps/UnmanagedLump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Lumps/UnmanagedLump.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/Angle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/Angle.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/Entity.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/EntityIO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/EntityIO.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/PakFileEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/PakFileEntry.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/StaticProp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/StaticProp.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/TexData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/TexData.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/BSP/Struct/TexInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/BSP/Struct/TexInfo.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/EntityRules/EntityRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/EntityRules/EntityRule.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/ExtensionMethods/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/ExtensionMethods/ExtensionMethods.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/AddSkyOcclusionFlagJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/AddSkyOcclusionFlagJob.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/Job.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/Job.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/JobProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/JobProgress.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/RemoveAssetJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/RemoveAssetJob.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/ReplaceTextureJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/ReplaceTextureJob.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/RunExternalToolJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/RunExternalToolJob.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/StripperFileJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/StripperFileJob.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Jobs/StripperTextJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Jobs/StripperTextJob.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Lumper.Lib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Lumper.Lib.csproj -------------------------------------------------------------------------------- /src/Lumper.Lib/RequiredGames/RequiredGames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/RequiredGames/RequiredGames.cs -------------------------------------------------------------------------------- /src/Lumper.Lib/Stripper/StripperConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Lib/Stripper/StripperConfig.cs -------------------------------------------------------------------------------- /src/Lumper.Test/AddSkyboxOcclusionFlagTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Test/AddSkyboxOcclusionFlagTests.cs -------------------------------------------------------------------------------- /src/Lumper.Test/Lumper.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Test/Lumper.Test.csproj -------------------------------------------------------------------------------- /src/Lumper.Test/PakfileRefactoringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Test/PakfileRefactoringTests.cs -------------------------------------------------------------------------------- /src/Lumper.Test/RemoveAssetJobTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Test/RemoveAssetJobTests.cs -------------------------------------------------------------------------------- /src/Lumper.Test/StripperConfigTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Test/StripperConfigTest.cs -------------------------------------------------------------------------------- /src/Lumper.Test/TestUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.Test/TestUtils.cs -------------------------------------------------------------------------------- /src/Lumper.UI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/.gitignore -------------------------------------------------------------------------------- /src/Lumper.UI/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/App.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/App.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Bold.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-BoldItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-ExtraBold.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Italic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Light.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-LightItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Medium.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-MediumItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-Regular.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-SemiBold.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/JetBrainsMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/JetBrains_Mono/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/JetBrains_Mono/OFL.txt -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/LICENSE.txt -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Fonts/Roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Images/Lumper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Images/Lumper.ico -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Images/Lumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Images/Lumper.png -------------------------------------------------------------------------------- /src/Lumper.UI/Assets/Images/TransparentBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Assets/Images/TransparentBackground.png -------------------------------------------------------------------------------- /src/Lumper.UI/Controls/ClearableTextBox.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Controls/ClearableTextBox.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Controls/ClearableTextBox.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Controls/ClearableTextBox.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Converters/BitmapAssetValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Converters/BitmapAssetValueConverter.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Converters/FileSizeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Converters/FileSizeConverter.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Converters/JobStatusConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Converters/JobStatusConverter.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Converters/PercentConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Converters/PercentConverter.cs -------------------------------------------------------------------------------- /src/Lumper.UI/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Lumper.UI/JsonSuspensionDriver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/JsonSuspensionDriver.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Lumper.UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Lumper.UI.csproj -------------------------------------------------------------------------------- /src/Lumper.UI/ObservableExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ObservableExceptionHandler.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Program.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Services/BspService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Services/BspService.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Services/GameSyncService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Services/GameSyncService.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Services/PageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Services/PageService.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Services/StateService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Services/StateService.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Services/UpdaterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Services/UpdaterService.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Styles/ButtonSpinner.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Styles/ButtonSpinner.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Styles/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Styles/Styles.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Utils.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewLocator.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/BspInfo/BspInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/BspInfo/BspInfoViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/LogViewer/LogViewerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/LogViewer/LogViewerViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/EntityEditor/EntityEditorFiltersViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/EntityEditor/EntityEditorFiltersViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/EntityEditor/EntityEditorTabViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/EntityEditor/EntityEditorTabViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/EntityEditor/EntityEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/EntityEditor/EntityEditorViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/EntityReview/EntityReviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/EntityReview/EntityReviewViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/AddSkyOcclusionFlagJobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/AddSkyOcclusionFlagJobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/JobMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/JobMenuItem.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/JobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/JobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/JobsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/JobsViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/RemoveAssetJobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/RemoveAssetJobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/ReplaceTextureJobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/ReplaceTextureJobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/RunExternalToolJobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/RunExternalToolJobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/StripperFileJobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/StripperFileJobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/Jobs/StripperTextJobViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/Jobs/StripperTextJobViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/PakfileExplorer/PakfileExplorerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/PakfileExplorer/PakfileExplorerViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/PakfileExplorer/PakfileTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/PakfileExplorer/PakfileTreeViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/RawEntities/RawEntitiesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/RawEntities/RawEntitiesViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/RequiredGames/RequiredGamesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/RequiredGames/RequiredGamesViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Pages/VtfBrowser/VtfBrowserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Pages/VtfBrowser/VtfBrowserViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/BspNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/BspNode.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Entity/EntityLumpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Entity/EntityLumpViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Entity/EntityPropertyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Entity/EntityPropertyViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Entity/EntityViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Entity/EntityViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/LumpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/LumpViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileEntryTextViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileEntryTextViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileEntryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileEntryViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileEntryVtfViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileEntryVtfViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileLumpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Pakfile/PakfileLumpViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/Shared/Vtf/VtfFileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/Shared/Vtf/VtfFileViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/ViewModels/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/ViewModels/ViewModel.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/AboutDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/AboutDialog.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/AboutDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/AboutDialog.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/BspInfo/BspInfoView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/BspInfo/BspInfoView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/BspInfo/BspInfoView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/BspInfo/BspInfoView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/IoProgressDialog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/IoProgressDialog.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/IoProgressDialog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/IoProgressDialog.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/LogViewer/LogViewerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/LogViewer/LogViewerView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/LogViewer/LogViewerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/LogViewer/LogViewerView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/MainWindow.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/EntityEditor/EntityEditorView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/EntityEditor/EntityEditorView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/EntityEditor/EntityEditorView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/EntityEditor/EntityEditorView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/EntityReview/EntityReviewView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/EntityReview/EntityReviewView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/EntityReview/EntityReviewView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/EntityReview/EntityReviewView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/AddSkyOcclusionFlagJobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/AddSkyOcclusionFlagJobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/AddSkyOcclusionFlagJobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/AddSkyOcclusionFlagJobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/JobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/JobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/JobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/JobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/JobsView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/JobsView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/JobsView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/JobsView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/RemoveAssetJobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/RemoveAssetJobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/RemoveAssetJobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/RemoveAssetJobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/ReplaceTextureJobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/ReplaceTextureJobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/ReplaceTextureJobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/ReplaceTextureJobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/RunExternalToolJobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/RunExternalToolJobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/RunExternalToolJobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/RunExternalToolJobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/StripperFileJobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/StripperFileJobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/StripperFileJobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/StripperFileJobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/StripperTextJobView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/StripperTextJobView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/Jobs/StripperTextJobView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/Jobs/StripperTextJobView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/PakfileExplorer/PakfileExplorerView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/PakfileExplorer/PakfileExplorerView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/PakfileExplorer/PakfileExplorerView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/PakfileExplorer/PakfileExplorerView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/RawEntities/RawEntitiesView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/RawEntities/RawEntitiesView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/RawEntities/RawEntitiesView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/RawEntities/RawEntitiesView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/RequiredGames/RequiredGamesView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/RequiredGames/RequiredGamesView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/RequiredGames/RequiredGamesView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/RequiredGames/RequiredGamesView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/VtfBrowser/VtfBrowserView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/VtfBrowser/VtfBrowserView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Pages/VtfBrowser/VtfBrowserView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Pages/VtfBrowser/VtfBrowserView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryTextView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryTextView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryTextView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryTextView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryVtfView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryVtfView.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryVtfView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Shared/Pakfile/PakfileEntryVtfView.axaml.cs -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Shared/VtfImageWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Shared/VtfImageWindow.axaml -------------------------------------------------------------------------------- /src/Lumper.UI/Views/Shared/VtfImageWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momentum-mod/lumper/HEAD/src/Lumper.UI/Views/Shared/VtfImageWindow.axaml.cs --------------------------------------------------------------------------------