16 lines
302 B
C#
16 lines
302 B
C#
using System.Windows;
|
|
|
|
namespace Intromat.Views
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for SplashScreenWindow.xaml
|
|
/// </summary>
|
|
public partial class SplashScreenWindow : Window
|
|
{
|
|
public SplashScreenWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|