mirror of
https://github.com/babalae/better-genshin-impact
synced 2025-01-08 11:57:53 +08:00
18 lines
230 B
C#
18 lines
230 B
C#
using MicaSetup.Helper;
|
|
using System.Windows;
|
|
|
|
namespace MicaSetup;
|
|
|
|
public partial class App : Application, IApp
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
|
|
public interface IApp
|
|
{
|
|
public int Run();
|
|
}
|