Files @ 6919080271d5
Branch filter:

Location: ATITD-Tools/Desert-Paint-Codex/Views/SelectProfileView.axaml.cs

Malkyne
Implemented a system that will allow ingredients to be safely renamed, in the
future, without invalidating profiles. Standardized to PP's "FalconBait."

using Avalonia.Controls;
using Avalonia.Markup.Xaml;
using Avalonia.ReactiveUI;
using DesertPaintCodex.ViewModels;


namespace DesertPaintCodex.Views
{
    public class SelectProfileView : ReactiveUserControl<SelectProfileViewModel>

    {
    public SelectProfileView()
    {
        InitializeComponent();
    }

    private void InitializeComponent()
    {
        AvaloniaXamlLoader.Load(this);
    }
    }
}