DiscordMediaLoader/Discord Media Loader.Application/FrmInternalSplash.cs

28 lines
861 B
C#
Raw Normal View History

2019-02-15 17:49:46 +01:00
#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;
2017-04-30 11:06:10 +02:00
namespace DML.Application
{
public partial class FrmInternalSplash : Form
{
public FrmInternalSplash()
{
InitializeComponent();
}
}
}