/* frmSplashScreen.cs $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ namespace Handbrake { using System.Windows.Forms; /// /// The Splash Screen /// public partial class frmSplashScreen : Form { /// /// Initializes a new instance of the class. /// public frmSplashScreen() { InitializeComponent(); } } }