├── .editorconfig ├── .gitignore ├── 0001_ModMaker ├── icon.png ├── info.lps ├── lang │ ├── en │ │ ├── Prog2310.lps │ │ ├── Prog2403.lps │ │ ├── Prog2412.lps │ │ └── dsui2310.lps │ ├── zh-Hans │ │ ├── Prog2310.lps │ │ ├── Prog2403.lps │ │ ├── Prog2412.lps │ │ └── dsui2310.lps │ └── zh-Hant │ │ ├── Prog2310.lps │ │ ├── Prog2403.lps │ │ ├── Prog2412.lps │ │ └── dsui2310.lps └── plugin │ ├── DynamicData.dll │ ├── HKW.CommonValueConverters.dll │ ├── HKW.MVVMDialogs.dll │ ├── HKW.Mapper.dll │ ├── HKW.ReactiveUI.dll │ ├── HKW.Utils.dll │ ├── HKW.WPF.dll │ ├── HanumanInstitute.MvvmDialogs.Wpf.dll │ ├── HanumanInstitute.MvvmDialogs.dll │ ├── LinePutScript.Localization.WPF.dll │ ├── LinePutScript.dll │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Xaml.Behaviors.dll │ ├── NLog.dll │ ├── Panuon.WPF.UI.dll │ ├── Panuon.WPF.dll │ ├── ReactiveUI.Wpf.dll │ ├── ReactiveUI.dll │ ├── SkiaSharp.dll │ ├── Splat.NLog.dll │ ├── Splat.dll │ ├── System.IO.Pipelines.dll │ ├── System.Reactive.dll │ ├── VPet-Simulator.Core.dll │ ├── VPet-Simulator.Windows.Interface.dll │ ├── VPet.ModMaker.deps.json │ ├── VPet.ModMaker.dll │ ├── VPet.ModMaker.exe │ ├── VPet.ModMaker.runtimeconfig.json │ ├── VPet.ModMaker.xml │ └── runtimes │ ├── browser │ └── lib │ │ └── net8.0 │ │ └── System.Text.Encodings.Web.dll │ ├── osx │ └── native │ │ └── libSkiaSharp.dylib │ ├── win-arm64 │ └── native │ │ └── libSkiaSharp.dll │ ├── win-x64 │ └── native │ │ └── libSkiaSharp.dll │ └── win-x86 │ └── native │ └── libSkiaSharp.dll ├── LICENSE ├── README.md ├── VPet.ModMaker.Tests ├── AssemblyInfo.cs ├── AutomationIDs.cs ├── NativeData.cs ├── NativeExtensions.cs ├── Program.cs ├── T0_ModMakerWindowTests.cs └── VPet.ModMaker.Tests.csproj ├── VPet.ModMaker.sln ├── VPet.ModMaker ├── App.xaml ├── App.xaml.cs ├── Converters.xaml ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── Models │ ├── ModInfoModel.cs │ ├── ModLoader.cs │ ├── ModMakeHistory.cs │ ├── ModMaker.cs │ ├── ModModel │ │ ├── AnimeModel.cs │ │ ├── AnimeTypeModel.cs │ │ ├── ClickTextModel.cs │ │ ├── FoodAnimeLocationModel.cs │ │ ├── FoodAnimeModel.cs │ │ ├── FoodAnimeTypeModel.cs │ │ ├── FoodModel.cs │ │ ├── IAnimeModel.cs │ │ ├── ImageModel.cs │ │ ├── LowTextModel.cs │ │ ├── MoveModel.cs │ │ ├── PetModel.cs │ │ ├── SelectTextModel.cs │ │ └── WorkModel.cs │ └── ModUpdataHelper.cs ├── Native │ ├── NativeData.cs │ ├── NativeExtensions.cs │ ├── NativeUtils.cs │ └── ViewLocator.cs ├── NativeStyles.xaml ├── NativeStyles.xaml.cs ├── Properties │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── NLog.config │ ├── NativeResources.cs │ └── food.png ├── Styles.xaml ├── Templates.xaml ├── VPet.ModMaker.csproj ├── ViewModels │ ├── ModEdit │ │ ├── AddCultureVM.cs │ │ ├── AnimeEdit │ │ │ ├── AnimeEditVM.cs │ │ │ ├── AnimeVM.cs │ │ │ ├── FoodAnimeEditVM.cs │ │ │ └── SelectGraphTypeVM.cs │ │ ├── ClickTextEditVM.cs │ │ ├── FoodEditVM.cs │ │ ├── I18nEditVM.cs │ │ ├── LowTextEditVM.cs │ │ ├── MoveEditVM.cs │ │ ├── PetEditVM.cs │ │ ├── SaveTranslationModVM.cs │ │ ├── SelectTextEditVM.cs │ │ └── WorkEditVM.cs │ ├── ModEditVM.cs │ ├── ModMakerVM.cs │ └── ViewModelBase.cs └── Views │ ├── ModEdit │ ├── AddCultureWindow.xaml │ ├── AddCultureWindow.xaml.cs │ ├── AnimeEdit │ │ ├── AnimeEditWindow.xaml │ │ ├── AnimeEditWindow.xaml.cs │ │ ├── AnimePage.xaml │ │ ├── AnimePage.xaml.cs │ │ ├── FoodAnimeEditWindow.xaml │ │ ├── FoodAnimeEditWindow.xaml.cs │ │ ├── SelectGraphTypeWindow.xaml │ │ └── SelectGraphTypeWindow.xaml.cs │ ├── ClickTextEdit │ │ ├── ClickTextEditWindow.xaml │ │ ├── ClickTextEditWindow.xaml.cs │ │ ├── ClickTextPage.xaml │ │ └── ClickTextPage.xaml.cs │ ├── FoodEdit │ │ ├── FoodEditWindow.xaml │ │ ├── FoodEditWindow.xaml.cs │ │ ├── FoodPage.xaml │ │ └── FoodPage.xaml.cs │ ├── I18nEditWindow.xaml │ ├── I18nEditWindow.xaml.cs │ ├── LowTextEdit │ │ ├── LowTextEditWindow.xaml │ │ ├── LowTextEditWindow.xaml.cs │ │ ├── LowTextPage.xaml │ │ └── LowTextPage.xaml.cs │ ├── MoveEdit │ │ ├── MoveEditWindow.xaml │ │ ├── MoveEditWindow.xaml.cs │ │ ├── MovePage.xaml │ │ └── MovePage.xaml.cs │ ├── PetEdit │ │ ├── PetEditWindow.xaml │ │ ├── PetEditWindow.xaml.cs │ │ ├── PetPage.xaml │ │ └── PetPage.xaml.cs │ ├── SaveTranslationModWindow.xaml │ ├── SaveTranslationModWindow.xaml.cs │ ├── SelectTextEdit │ │ ├── SelectTextEditWindow.xaml │ │ ├── SelectTextEditWindow.xaml.cs │ │ ├── SelectTextPage.xaml │ │ └── SelectTextPage.xaml.cs │ └── WorkEdit │ │ ├── WorkEditWindow.xaml │ │ ├── WorkEditWindow.xaml.cs │ │ ├── WorkPage.xaml │ │ └── WorkPage.xaml.cs │ ├── ModEditWindow.xaml │ ├── ModEditWindow.xaml.cs │ ├── ModMakerWindow.xaml │ └── ModMakerWindow.xaml.cs └── icon.afphoto /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/.gitignore -------------------------------------------------------------------------------- /0001_ModMaker/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/icon.png -------------------------------------------------------------------------------- /0001_ModMaker/info.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/info.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/en/Prog2310.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/en/Prog2310.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/en/Prog2403.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/en/Prog2403.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/en/Prog2412.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/en/Prog2412.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/en/dsui2310.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/en/dsui2310.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hans/Prog2310.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hans/Prog2310.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hans/Prog2403.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hans/Prog2403.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hans/Prog2412.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hans/Prog2412.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hans/dsui2310.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hans/dsui2310.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hant/Prog2310.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hant/Prog2310.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hant/Prog2403.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hant/Prog2403.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hant/Prog2412.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hant/Prog2412.lps -------------------------------------------------------------------------------- /0001_ModMaker/lang/zh-Hant/dsui2310.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/lang/zh-Hant/dsui2310.lps -------------------------------------------------------------------------------- /0001_ModMaker/plugin/DynamicData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/DynamicData.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HKW.CommonValueConverters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HKW.CommonValueConverters.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HKW.MVVMDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HKW.MVVMDialogs.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HKW.Mapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HKW.Mapper.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HKW.ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HKW.ReactiveUI.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HKW.Utils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HKW.Utils.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HKW.WPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HKW.WPF.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HanumanInstitute.MvvmDialogs.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HanumanInstitute.MvvmDialogs.Wpf.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/HanumanInstitute.MvvmDialogs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/HanumanInstitute.MvvmDialogs.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/LinePutScript.Localization.WPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/LinePutScript.Localization.WPF.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/LinePutScript.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/LinePutScript.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Microsoft.Extensions.Logging.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Microsoft.Extensions.Logging.Abstractions.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Microsoft.Xaml.Behaviors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Microsoft.Xaml.Behaviors.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/NLog.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Panuon.WPF.UI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Panuon.WPF.UI.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Panuon.WPF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Panuon.WPF.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/ReactiveUI.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/ReactiveUI.Wpf.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/ReactiveUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/ReactiveUI.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/SkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/SkiaSharp.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Splat.NLog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Splat.NLog.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/Splat.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/Splat.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/System.Reactive.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/System.Reactive.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet-Simulator.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet-Simulator.Core.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet-Simulator.Windows.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet-Simulator.Windows.Interface.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet.ModMaker.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet.ModMaker.deps.json -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet.ModMaker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet.ModMaker.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet.ModMaker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet.ModMaker.exe -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet.ModMaker.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet.ModMaker.runtimeconfig.json -------------------------------------------------------------------------------- /0001_ModMaker/plugin/VPet.ModMaker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/VPet.ModMaker.xml -------------------------------------------------------------------------------- /0001_ModMaker/plugin/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/runtimes/osx/native/libSkiaSharp.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/runtimes/osx/native/libSkiaSharp.dylib -------------------------------------------------------------------------------- /0001_ModMaker/plugin/runtimes/win-arm64/native/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/runtimes/win-arm64/native/libSkiaSharp.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/runtimes/win-x64/native/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/runtimes/win-x64/native/libSkiaSharp.dll -------------------------------------------------------------------------------- /0001_ModMaker/plugin/runtimes/win-x86/native/libSkiaSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/0001_ModMaker/plugin/runtimes/win-x86/native/libSkiaSharp.dll -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/README.md -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/AutomationIDs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/AutomationIDs.cs -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/NativeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/NativeData.cs -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/NativeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/NativeExtensions.cs -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/Program.cs -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/T0_ModMakerWindowTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/T0_ModMakerWindowTests.cs -------------------------------------------------------------------------------- /VPet.ModMaker.Tests/VPet.ModMaker.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.Tests/VPet.ModMaker.Tests.csproj -------------------------------------------------------------------------------- /VPet.ModMaker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker.sln -------------------------------------------------------------------------------- /VPet.ModMaker/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/App.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/App.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Converters.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Converters.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/FodyWeavers.xml -------------------------------------------------------------------------------- /VPet.ModMaker/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/FodyWeavers.xsd -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModInfoModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModInfoModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModLoader.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModMakeHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModMakeHistory.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModMaker.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/AnimeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/AnimeModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/AnimeTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/AnimeTypeModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/ClickTextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/ClickTextModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/FoodAnimeLocationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/FoodAnimeLocationModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/FoodAnimeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/FoodAnimeModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/FoodAnimeTypeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/FoodAnimeTypeModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/FoodModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/FoodModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/IAnimeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/IAnimeModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/ImageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/ImageModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/LowTextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/LowTextModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/MoveModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/MoveModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/PetModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/PetModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/SelectTextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/SelectTextModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModModel/WorkModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModModel/WorkModel.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Models/ModUpdataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Models/ModUpdataHelper.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Native/NativeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Native/NativeData.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Native/NativeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Native/NativeExtensions.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Native/NativeUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Native/NativeUtils.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Native/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Native/ViewLocator.cs -------------------------------------------------------------------------------- /VPet.ModMaker/NativeStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/NativeStyles.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/NativeStyles.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/NativeStyles.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Properties/Resources.resx -------------------------------------------------------------------------------- /VPet.ModMaker/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Properties/Settings.settings -------------------------------------------------------------------------------- /VPet.ModMaker/Resources/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Resources/NLog.config -------------------------------------------------------------------------------- /VPet.ModMaker/Resources/NativeResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Resources/NativeResources.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Resources/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Resources/food.png -------------------------------------------------------------------------------- /VPet.ModMaker/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Styles.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Templates.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Templates.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/VPet.ModMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/VPet.ModMaker.csproj -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/AddCultureVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/AddCultureVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/AnimeEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/AnimeEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/AnimeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/AnimeVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/FoodAnimeEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/FoodAnimeEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/SelectGraphTypeVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/AnimeEdit/SelectGraphTypeVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/ClickTextEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/ClickTextEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/FoodEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/FoodEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/I18nEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/I18nEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/LowTextEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/LowTextEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/MoveEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/MoveEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/PetEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/PetEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/SaveTranslationModVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/SaveTranslationModVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/SelectTextEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/SelectTextEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEdit/WorkEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEdit/WorkEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModEditVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModEditVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ModMakerVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ModMakerVM.cs -------------------------------------------------------------------------------- /VPet.ModMaker/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AddCultureWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AddCultureWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AddCultureWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AddCultureWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimeEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimeEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimeEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimeEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimePage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/AnimePage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/FoodAnimeEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/FoodAnimeEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/FoodAnimeEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/FoodAnimeEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/SelectGraphTypeWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/SelectGraphTypeWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/AnimeEdit/SelectGraphTypeWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/AnimeEdit/SelectGraphTypeWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextPage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/ClickTextEdit/ClickTextPage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/FoodEdit/FoodEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/FoodEdit/FoodEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/FoodEdit/FoodEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/FoodEdit/FoodEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/FoodEdit/FoodPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/FoodEdit/FoodPage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/FoodEdit/FoodPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/FoodEdit/FoodPage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/I18nEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/I18nEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/I18nEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/I18nEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextPage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/LowTextEdit/LowTextPage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/MoveEdit/MoveEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/MoveEdit/MoveEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/MoveEdit/MoveEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/MoveEdit/MoveEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/MoveEdit/MovePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/MoveEdit/MovePage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/MoveEdit/MovePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/MoveEdit/MovePage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/PetEdit/PetEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/PetEdit/PetEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/PetEdit/PetEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/PetEdit/PetEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/PetEdit/PetPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/PetEdit/PetPage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/PetEdit/PetPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/PetEdit/PetPage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/SaveTranslationModWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/SaveTranslationModWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/SaveTranslationModWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/SaveTranslationModWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextPage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/SelectTextEdit/SelectTextPage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/WorkEdit/WorkEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/WorkEdit/WorkEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/WorkEdit/WorkEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/WorkEdit/WorkEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/WorkEdit/WorkPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/WorkEdit/WorkPage.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEdit/WorkEdit/WorkPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEdit/WorkEdit/WorkPage.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEditWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEditWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModEditWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModEditWindow.xaml.cs -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModMakerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModMakerWindow.xaml -------------------------------------------------------------------------------- /VPet.ModMaker/Views/ModMakerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/VPet.ModMaker/Views/ModMakerWindow.xaml.cs -------------------------------------------------------------------------------- /icon.afphoto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LorisYounger/VPet.ModMaker/HEAD/icon.afphoto --------------------------------------------------------------------------------