mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-21 18:13:14 +02:00
13 lines
330 B
C#
13 lines
330 B
C#
using FluentAvalonia.UI.Controls;
|
|
using System;
|
|
|
|
namespace Ryujinx.Ava.Utilities.Compat
|
|
{
|
|
public partial class CompatibilityContentDialog : ContentDialog
|
|
{
|
|
protected override Type StyleKeyOverride => typeof(ContentDialog);
|
|
|
|
public CompatibilityContentDialog() => InitializeComponent();
|
|
}
|
|
}
|
|
|