diff --git a/Saviour Backup System/splashScreen.cs b/Saviour Backup System/splashScreen.cs index 5cfca00..dc67b24 100644 --- a/Saviour Backup System/splashScreen.cs +++ b/Saviour Backup System/splashScreen.cs @@ -16,5 +16,11 @@ namespace Saviour_Backup_System { InitializeComponent(); } + + internal void display(bool isStartup) { + this.Show(); + this.desc.Text = "Initialising..."; + if (isStartup) { this.Hide(); } + } } }