-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathInfo.cs
40 lines (34 loc) · 997 Bytes
/
Info.cs
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
37
38
39
40
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 alyx_multiplayer
{
public partial class Info : Form
{
public Info()
{
InitializeComponent();
}
private void Info_Load(object sender, EventArgs e)
{
}
private void Info_FormClosed(object sender, FormClosedEventArgs e)
{
Core.isInfoOpen = false;
}
private void buttonSourceCode_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://github.com/ZacharyTalis/alyx-multiplayer");
}
private void buttonWebsite_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start("https://alyx-multiplayer.com/");
}
}
}