mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-06 11:45:34 +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();
|
|
}
|