├── .gitignore ├── LICENSE ├── README.md ├── latest └── Tyrant.1.0.0.1.zip └── src ├── Tyrant.Logic ├── AssetHandlers │ ├── MaterialDefs.cs │ ├── Mesh.cs │ ├── Motion.cs │ ├── MotionList.cs │ ├── SoundBank.cs │ └── Texture.cs ├── FileHandlers │ └── Package.cs ├── Helpers │ ├── NameCache.cs │ ├── System.Half.cs │ └── System.HalfHelper.cs ├── Properties │ └── AssemblyInfo.cs └── Tyrant.Logic.csproj ├── Tyrant.sln └── Tyrant ├── App.config ├── App.xaml ├── App.xaml.cs ├── Helpers ├── Asset.cs ├── AssetList.cs ├── MainViewModel.cs └── TyrantSettings.cs ├── Icon.ico ├── Icons ├── AboutIcon.xaml ├── ExportAllIcon.xaml ├── ExportIcon.xaml ├── OpenFileIcon.xaml └── SettingsIcon.xaml ├── Images ├── Icon.ico └── Icon.png ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Styles ├── ButtonStyle.xaml ├── CheckBoxStyle.xaml ├── IconButtonStyle.xaml ├── ListViewStyle.xaml ├── ProgressBarStyle.xaml ├── RadioButtonStyle.xaml ├── SliderStyle.xaml ├── TabStyle.xaml └── TextBoxStyle.xaml ├── Tyrant.csproj ├── TyrantCache ├── DevilMayCry5NameCache0.tcache ├── ResidentEvil2RemakeNameCache0.tcache └── ResidentEvil7NameCache0.tcache ├── Windows ├── AboutWindow.xaml ├── AboutWindow.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── ProgressWindow.xaml ├── ProgressWindow.xaml.cs ├── SettingsWindow.xaml └── SettingsWindow.xaml.cs ├── app.manifest └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/README.md -------------------------------------------------------------------------------- /latest/Tyrant.1.0.0.1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/latest/Tyrant.1.0.0.1.zip -------------------------------------------------------------------------------- /src/Tyrant.Logic/AssetHandlers/MaterialDefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/AssetHandlers/MaterialDefs.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/AssetHandlers/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/AssetHandlers/Mesh.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/AssetHandlers/Motion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/AssetHandlers/Motion.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/AssetHandlers/MotionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/AssetHandlers/MotionList.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/AssetHandlers/SoundBank.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/AssetHandlers/SoundBank.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/AssetHandlers/Texture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/AssetHandlers/Texture.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/FileHandlers/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/FileHandlers/Package.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/Helpers/NameCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/Helpers/NameCache.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/Helpers/System.Half.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/Helpers/System.Half.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/Helpers/System.HalfHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/Helpers/System.HalfHelper.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tyrant.Logic/Tyrant.Logic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.Logic/Tyrant.Logic.csproj -------------------------------------------------------------------------------- /src/Tyrant.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant.sln -------------------------------------------------------------------------------- /src/Tyrant/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/App.config -------------------------------------------------------------------------------- /src/Tyrant/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/App.xaml -------------------------------------------------------------------------------- /src/Tyrant/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/App.xaml.cs -------------------------------------------------------------------------------- /src/Tyrant/Helpers/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Helpers/Asset.cs -------------------------------------------------------------------------------- /src/Tyrant/Helpers/AssetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Helpers/AssetList.cs -------------------------------------------------------------------------------- /src/Tyrant/Helpers/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Helpers/MainViewModel.cs -------------------------------------------------------------------------------- /src/Tyrant/Helpers/TyrantSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Helpers/TyrantSettings.cs -------------------------------------------------------------------------------- /src/Tyrant/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Icon.ico -------------------------------------------------------------------------------- /src/Tyrant/Icons/AboutIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Icons/AboutIcon.xaml -------------------------------------------------------------------------------- /src/Tyrant/Icons/ExportAllIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Icons/ExportAllIcon.xaml -------------------------------------------------------------------------------- /src/Tyrant/Icons/ExportIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Icons/ExportIcon.xaml -------------------------------------------------------------------------------- /src/Tyrant/Icons/OpenFileIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Icons/OpenFileIcon.xaml -------------------------------------------------------------------------------- /src/Tyrant/Icons/SettingsIcon.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Icons/SettingsIcon.xaml -------------------------------------------------------------------------------- /src/Tyrant/Images/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Images/Icon.ico -------------------------------------------------------------------------------- /src/Tyrant/Images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Images/Icon.png -------------------------------------------------------------------------------- /src/Tyrant/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Tyrant/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Tyrant/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Tyrant/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Tyrant/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Tyrant/Styles/ButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/ButtonStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/CheckBoxStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/CheckBoxStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/IconButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/IconButtonStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/ListViewStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/ListViewStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/ProgressBarStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/ProgressBarStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/RadioButtonStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/RadioButtonStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/SliderStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/SliderStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/TabStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/TabStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Styles/TextBoxStyle.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Styles/TextBoxStyle.xaml -------------------------------------------------------------------------------- /src/Tyrant/Tyrant.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Tyrant.csproj -------------------------------------------------------------------------------- /src/Tyrant/TyrantCache/DevilMayCry5NameCache0.tcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/TyrantCache/DevilMayCry5NameCache0.tcache -------------------------------------------------------------------------------- /src/Tyrant/TyrantCache/ResidentEvil2RemakeNameCache0.tcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/TyrantCache/ResidentEvil2RemakeNameCache0.tcache -------------------------------------------------------------------------------- /src/Tyrant/TyrantCache/ResidentEvil7NameCache0.tcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/TyrantCache/ResidentEvil7NameCache0.tcache -------------------------------------------------------------------------------- /src/Tyrant/Windows/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/AboutWindow.xaml -------------------------------------------------------------------------------- /src/Tyrant/Windows/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /src/Tyrant/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /src/Tyrant/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/Tyrant/Windows/ProgressWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/ProgressWindow.xaml -------------------------------------------------------------------------------- /src/Tyrant/Windows/ProgressWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/ProgressWindow.xaml.cs -------------------------------------------------------------------------------- /src/Tyrant/Windows/SettingsWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/SettingsWindow.xaml -------------------------------------------------------------------------------- /src/Tyrant/Windows/SettingsWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/Windows/SettingsWindow.xaml.cs -------------------------------------------------------------------------------- /src/Tyrant/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/app.manifest -------------------------------------------------------------------------------- /src/Tyrant/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Scobalula/Tyrant/HEAD/src/Tyrant/packages.config --------------------------------------------------------------------------------