-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMapEditorsForm.cs
41 lines (35 loc) · 972 Bytes
/
MapEditorsForm.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
41
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace RedAlertLauncher
{
public partial class MapEditorsForm : Form
{
public MapEditorsForm()
{
InitializeComponent();
}
private void but_close_Click(object sender, EventArgs e)
{
}
private void but_RAED_Click(object sender, EventArgs e)
{
Form1.Start_Application("raed.exe", "");
Application.Exit();
}
private void but_edwin_Click(object sender, EventArgs e)
{
Form1.Start_Application("edwin.exe", "");
Application.Exit();
}
private void but_RAED_DesertWinter_Click(object sender, EventArgs e)
{
Form1.Start_Application("raed_desert_winter.exe", "");
Application.Exit();
}
}
}