28 lines
861 B
C#
28 lines
861 B
C#
#region LICENSE
|
|
/**********************************************************************************************
|
|
* Copyright (C) 2017-2019 - All Rights Reserved
|
|
*
|
|
* This file is part of "DML.Application".
|
|
* The official repository is hosted at https://github.com/Serraniel/DiscordMediaLoader
|
|
*
|
|
* "DML.Application" is licensed under Apache 2.0.
|
|
* Full license is included in the project repository.
|
|
*
|
|
* Users who edited FrmInternalSplash.cs under the condition of the used license:
|
|
* - Serraniel (https://github.com/Serraniel)
|
|
**********************************************************************************************/
|
|
#endregion
|
|
|
|
using System.Windows.Forms;
|
|
|
|
namespace DML.Application
|
|
{
|
|
public partial class FrmInternalSplash : Form
|
|
{
|
|
public FrmInternalSplash()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|