├── .gitattributes ├── .gitignore ├── Adobe AMF specifications.pdf ├── LICENSE ├── README.md ├── TiTsEd.sln ├── TiTsEd ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── cross.png │ ├── plus.png │ └── search.png ├── Common │ ├── ActionScriptHelpers.cs │ ├── ArrayEditor.cs │ ├── AutoGrid.cs │ ├── BoolEventArgs.cs │ ├── Globals.cs │ ├── ItemPanel.cs │ ├── Logger.cs │ ├── MyComboBox.cs │ ├── MyNumericBox.cs │ ├── MyPiercingBox.cs │ ├── NamedVector4Control.cs │ ├── NaturalSortComparer.cs │ ├── RelayCommand.cs │ ├── SearchBox.cs │ ├── UIHelpers.cs │ ├── UpdatableCollection.cs │ ├── UpdatableCollectionHelper.cs │ ├── UriConverter.cs │ ├── VersionInfo.cs │ └── _ext.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── AmfFile.cs │ ├── AmfObject.cs │ ├── AmfReader.cs │ ├── AmfWriter.cs │ ├── ComparisonStream.cs │ ├── FileManager.cs │ └── XmlData.cs ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx ├── Settings.Designer.cs ├── Settings.settings ├── Themes │ ├── Assets.xaml │ ├── PageInclude.xaml │ ├── Scrollbars.xaml │ ├── Styles.xaml │ └── Templates.xaml ├── TiTsEd.Data.xml ├── TiTsEd.csproj ├── TiTsEd.ico ├── View │ ├── BodyPage.xaml │ ├── BodyPage.xaml.cs │ ├── CheckForUpdateBox.xaml │ ├── CheckForUpdateBox.xaml.cs │ ├── CodexPage.xaml │ ├── CodexPage.xaml.cs │ ├── ConfirmationBox.xaml │ ├── ConfirmationBox.xaml.cs │ ├── ExceptionBox.xaml │ ├── ExceptionBox.xaml.cs │ ├── FlagBox.xaml │ ├── FlagBox.xaml.cs │ ├── FlagsPage.xaml │ ├── FlagsPage.xaml.cs │ ├── GeneralPage.xaml │ ├── GeneralPage.xaml.cs │ ├── GenitalPage.xaml │ ├── GenitalPage.xaml.cs │ ├── HeadPage.xaml │ ├── HeadPage.xaml.cs │ ├── ItemsPage.xaml │ ├── ItemsPage.xaml.cs │ ├── KeyItemsPage.xaml │ ├── KeyItemsPage.xaml.cs │ ├── MiscPage.xaml │ ├── MiscPage.xaml.cs │ ├── PerkPage.xaml │ ├── PerkPage.xaml.cs │ ├── RawStateViewPage.xaml │ ├── RawStateViewPage.xaml.cs │ ├── ShipsPage.xaml │ ├── ShipsPage.xaml.cs │ ├── StatusEffectsPage.xaml │ ├── StatusEffectsPage.xaml.cs │ ├── TopBar.xaml │ └── TopBar.xaml.cs ├── ViewModel │ ├── AmfObjectVM.cs │ ├── BindableBase.cs │ ├── BreastsVM.cs │ ├── CharacterVM.cs │ ├── CockVM.cs │ ├── CodexManagerVM.cs │ ├── CreatureVM.cs │ ├── FilesVM.cs │ ├── FlagVM.cs │ ├── GameVM.Core.cs │ ├── GameVM.cs │ ├── ItemVM.cs │ ├── KeyItemVM.cs │ ├── PerkVM.cs │ ├── PregnancyVM.cs │ ├── ShipVM.cs │ ├── StatusEffectVM.cs │ ├── StorageClassVM.cs │ ├── VM.cs │ └── VaginaVM.cs └── app.config ├── latest.txt └── updateLists.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/.gitignore -------------------------------------------------------------------------------- /Adobe AMF specifications.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/Adobe AMF specifications.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/README.md -------------------------------------------------------------------------------- /TiTsEd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd.sln -------------------------------------------------------------------------------- /TiTsEd/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/App.xaml -------------------------------------------------------------------------------- /TiTsEd/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/App.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/Assets/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Assets/cross.png -------------------------------------------------------------------------------- /TiTsEd/Assets/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Assets/plus.png -------------------------------------------------------------------------------- /TiTsEd/Assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Assets/search.png -------------------------------------------------------------------------------- /TiTsEd/Common/ActionScriptHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/ActionScriptHelpers.cs -------------------------------------------------------------------------------- /TiTsEd/Common/ArrayEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/ArrayEditor.cs -------------------------------------------------------------------------------- /TiTsEd/Common/AutoGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/AutoGrid.cs -------------------------------------------------------------------------------- /TiTsEd/Common/BoolEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/BoolEventArgs.cs -------------------------------------------------------------------------------- /TiTsEd/Common/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/Globals.cs -------------------------------------------------------------------------------- /TiTsEd/Common/ItemPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/ItemPanel.cs -------------------------------------------------------------------------------- /TiTsEd/Common/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/Logger.cs -------------------------------------------------------------------------------- /TiTsEd/Common/MyComboBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/MyComboBox.cs -------------------------------------------------------------------------------- /TiTsEd/Common/MyNumericBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/MyNumericBox.cs -------------------------------------------------------------------------------- /TiTsEd/Common/MyPiercingBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/MyPiercingBox.cs -------------------------------------------------------------------------------- /TiTsEd/Common/NamedVector4Control.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/NamedVector4Control.cs -------------------------------------------------------------------------------- /TiTsEd/Common/NaturalSortComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/NaturalSortComparer.cs -------------------------------------------------------------------------------- /TiTsEd/Common/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/RelayCommand.cs -------------------------------------------------------------------------------- /TiTsEd/Common/SearchBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/SearchBox.cs -------------------------------------------------------------------------------- /TiTsEd/Common/UIHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/UIHelpers.cs -------------------------------------------------------------------------------- /TiTsEd/Common/UpdatableCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/UpdatableCollection.cs -------------------------------------------------------------------------------- /TiTsEd/Common/UpdatableCollectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/UpdatableCollectionHelper.cs -------------------------------------------------------------------------------- /TiTsEd/Common/UriConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/UriConverter.cs -------------------------------------------------------------------------------- /TiTsEd/Common/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/VersionInfo.cs -------------------------------------------------------------------------------- /TiTsEd/Common/_ext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Common/_ext.cs -------------------------------------------------------------------------------- /TiTsEd/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/MainWindow.xaml -------------------------------------------------------------------------------- /TiTsEd/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/MainWindow.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/Model/AmfFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/AmfFile.cs -------------------------------------------------------------------------------- /TiTsEd/Model/AmfObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/AmfObject.cs -------------------------------------------------------------------------------- /TiTsEd/Model/AmfReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/AmfReader.cs -------------------------------------------------------------------------------- /TiTsEd/Model/AmfWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/AmfWriter.cs -------------------------------------------------------------------------------- /TiTsEd/Model/ComparisonStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/ComparisonStream.cs -------------------------------------------------------------------------------- /TiTsEd/Model/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/FileManager.cs -------------------------------------------------------------------------------- /TiTsEd/Model/XmlData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Model/XmlData.cs -------------------------------------------------------------------------------- /TiTsEd/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TiTsEd/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Properties/Resources.resx -------------------------------------------------------------------------------- /TiTsEd/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Settings.Designer.cs -------------------------------------------------------------------------------- /TiTsEd/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Settings.settings -------------------------------------------------------------------------------- /TiTsEd/Themes/Assets.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Themes/Assets.xaml -------------------------------------------------------------------------------- /TiTsEd/Themes/PageInclude.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Themes/PageInclude.xaml -------------------------------------------------------------------------------- /TiTsEd/Themes/Scrollbars.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Themes/Scrollbars.xaml -------------------------------------------------------------------------------- /TiTsEd/Themes/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Themes/Styles.xaml -------------------------------------------------------------------------------- /TiTsEd/Themes/Templates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/Themes/Templates.xaml -------------------------------------------------------------------------------- /TiTsEd/TiTsEd.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/TiTsEd.Data.xml -------------------------------------------------------------------------------- /TiTsEd/TiTsEd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/TiTsEd.csproj -------------------------------------------------------------------------------- /TiTsEd/TiTsEd.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/TiTsEd.ico -------------------------------------------------------------------------------- /TiTsEd/View/BodyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/BodyPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/BodyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/BodyPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/CheckForUpdateBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/CheckForUpdateBox.xaml -------------------------------------------------------------------------------- /TiTsEd/View/CheckForUpdateBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/CheckForUpdateBox.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/CodexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/CodexPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/CodexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/CodexPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/ConfirmationBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ConfirmationBox.xaml -------------------------------------------------------------------------------- /TiTsEd/View/ConfirmationBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ConfirmationBox.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/ExceptionBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ExceptionBox.xaml -------------------------------------------------------------------------------- /TiTsEd/View/ExceptionBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ExceptionBox.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/FlagBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/FlagBox.xaml -------------------------------------------------------------------------------- /TiTsEd/View/FlagBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/FlagBox.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/FlagsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/FlagsPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/FlagsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/FlagsPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/GeneralPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/GeneralPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/GeneralPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/GeneralPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/GenitalPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/GenitalPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/GenitalPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/GenitalPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/HeadPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/HeadPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/HeadPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/HeadPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/ItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ItemsPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/ItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ItemsPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/KeyItemsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/KeyItemsPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/KeyItemsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/KeyItemsPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/MiscPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/MiscPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/MiscPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/MiscPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/PerkPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/PerkPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/PerkPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/PerkPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/RawStateViewPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/RawStateViewPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/RawStateViewPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/RawStateViewPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/ShipsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ShipsPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/ShipsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/ShipsPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/StatusEffectsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/StatusEffectsPage.xaml -------------------------------------------------------------------------------- /TiTsEd/View/StatusEffectsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/StatusEffectsPage.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/View/TopBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/TopBar.xaml -------------------------------------------------------------------------------- /TiTsEd/View/TopBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/View/TopBar.xaml.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/AmfObjectVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/AmfObjectVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/BindableBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/BindableBase.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/BreastsVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/BreastsVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/CharacterVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/CharacterVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/CockVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/CockVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/CodexManagerVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/CodexManagerVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/CreatureVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/CreatureVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/FilesVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/FilesVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/FlagVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/FlagVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/GameVM.Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/GameVM.Core.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/GameVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/GameVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/ItemVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/ItemVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/KeyItemVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/KeyItemVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/PerkVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/PerkVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/PregnancyVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/PregnancyVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/ShipVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/ShipVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/StatusEffectVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/StatusEffectVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/StorageClassVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/StorageClassVM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/VM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/VM.cs -------------------------------------------------------------------------------- /TiTsEd/ViewModel/VaginaVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/ViewModel/VaginaVM.cs -------------------------------------------------------------------------------- /TiTsEd/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/TiTsEd/app.config -------------------------------------------------------------------------------- /latest.txt: -------------------------------------------------------------------------------- 1 | 0.34.6 2 | -------------------------------------------------------------------------------- /updateLists.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algoRhythm99/TiTsEd/HEAD/updateLists.sh --------------------------------------------------------------------------------