forked from CapuchinModding/CapuchinModManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cs
More file actions
36 lines (31 loc) · 984 Bytes
/
Main.cs
File metadata and controls
36 lines (31 loc) · 984 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System.Diagnostics;
namespace CapuchinModManager
{
public partial class Main : Form
{
public static Main Instance;
public Main()
{
InitializeComponent();
Instance = this;
modsList.Items.Clear();
}
private void aboutCMMButton_Click(object sender, EventArgs e)
{
MessageBox.Show(
$"CapuchinModManager v{Program.Version}\n(C) Copyright 2024 - 2026 github.com/CapuchinModding\nMIT License\n\nMade with <3 by the Capuchin Modding Community",
"About CapuchinModManager",
MessageBoxButtons.OK,
MessageBoxIcon.Asterisk
);
}
private void discordButton_Click(object sender, EventArgs e)
{
Process.Start(new ProcessStartInfo
{
FileName = Program.DiscordInviteUrl,
UseShellExecute = true
});
}
}
}