This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
> Added Guna > Started Making the loading form design > Added our logo + configed the app!
- Loading branch information
Showing
30 changed files
with
2,601 additions
and
16 deletions.
There are no files selected for viewing
Binary file added
BIN
+301 Bytes
.vs/MythicalLauncher/FileContentIndex/13f79ae6-cc42-45e6-9cdd-049867490fe3.vsidx
Binary file not shown.
Binary file added
BIN
+531 KB
.vs/MythicalLauncher/FileContentIndex/5cea93e6-d556-454c-863f-5a3c11bed099.vsidx
Binary file not shown.
Binary file added
BIN
+37.9 KB
.vs/MythicalLauncher/FileContentIndex/b73d147c-cfd8-43f2-9240-76193aa6acee.vsidx
Binary file not shown.
Binary file removed
BIN
-32 KB
.vs/MythicalLauncher/FileContentIndex/ed191032-6895-4993-801c-d2c965b6ea72.vsidx
Binary file not shown.
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
|
||
namespace MythicalLauncher | ||
{ | ||
public partial class Form1 : Form | ||
public partial class FrmLoading : Form | ||
{ | ||
public Form1() | ||
public FrmLoading() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void lblexit_Click(object sender, EventArgs e) | ||
{ | ||
Application.Exit(); | ||
} | ||
} | ||
} |
Oops, something went wrong.