-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathTabHelp.cs
35 lines (29 loc) · 904 Bytes
/
TabHelp.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
using System;
using System.Collections.Generic;
using System.Text;
using Decal.Adapter;
using VirindiViewService.Controls;
namespace AceCreator
{
public partial class AceCreator : PluginBase
{
public HudButton ButtonACCWiki { get; set; }
public HudButton ButtonACEWiki { get; set; }
public void ButtonACCWiki_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("https://github.com/harliq/AceCreator/wiki");
}
catch (Exception ex) { Util.LogError(ex); }
}
public void ButtonACEWiki_Click(object sender, EventArgs e)
{
try
{
System.Diagnostics.Process.Start("https://github.com/ACEmulator/ACE/wiki/Content-Creation");
}
catch (Exception ex) { Util.LogError(ex); }
}
}
}