diff options
Diffstat (limited to 'App.xaml.cs')
| -rw-r--r-- | App.xaml.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..0d3a9b5 --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,13 @@ +using Avalonia; +using Avalonia.Markup.Xaml; + +namespace Avalar +{ + public class App : Application + { + public override void Initialize() + { + AvaloniaXamlLoader.Load(this); + } + } +}
\ No newline at end of file |
