-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from harliq/Nudge
Nudge
- Loading branch information
Showing
11 changed files
with
122 additions
and
152 deletions.
There are no files selected for viewing
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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,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); } | ||
} | ||
} | ||
} |
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
Oops, something went wrong.