16 lines
330 B
C#
16 lines
330 B
C#
using BS.SharedLauncher.Windows;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace BS.SharedLauncher.Interfaces
|
|
{
|
|
public interface IStartRoutine
|
|
{
|
|
void OnStartup(IBeWoWindow mainWindow, Application app);
|
|
}
|
|
}
|