mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-16 08:27:44 +01:00
21 lines
386 B
C#
21 lines
386 B
C#
using System.Windows.Forms;
|
|
|
|
namespace Flowframes.Forms
|
|
{
|
|
public partial class SplashForm : Form
|
|
{
|
|
public SplashForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void SplashForm_Load(object sender, System.EventArgs e)
|
|
{
|
|
if (!Program.CmdMode)
|
|
{
|
|
Opacity = 1f;
|
|
}
|
|
}
|
|
}
|
|
}
|