forked from AcK77/AmiiBomb-uino
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AmiiBomb v0.2 Alpha AmiiBombuino v0.1 Alpha
- Loading branch information
Showing
159 changed files
with
18,595 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.24720.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AmiiBomb", "AmiiBomb\AmiiBomb.csproj", "{BD0FE5AD-B8C1-4246-ADFB-2D0F5F26602C}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{BD0FE5AD-B8C1-4246-ADFB-2D0F5F26602C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{BD0FE5AD-B8C1-4246-ADFB-2D0F5F26602C}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{BD0FE5AD-B8C1-4246-ADFB-2D0F5F26602C}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{BD0FE5AD-B8C1-4246-ADFB-2D0F5F26602C}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,48 @@ | ||
using System.Diagnostics; | ||
using System.Windows.Forms; | ||
|
||
namespace AmiiBomb | ||
{ | ||
public partial class About_Form : Form | ||
{ | ||
public About_Form() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
Process.Start("https://github.com/Falco20019/libamiibo"); | ||
} | ||
|
||
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
Process.Start("https://github.com/socram8888/amiitool"); | ||
} | ||
|
||
private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
Process.Start("http://www.amiibo.life/"); | ||
} | ||
|
||
private void linkLabel4_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
Process.Start("https://github.com/konstantin-kelemen/arduino-amiibo-tools"); | ||
} | ||
|
||
private void linkLabel5_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) | ||
{ | ||
Process.Start("https://gist.github.com/bkifft/c6fa52dc39e29b85cb2787ac6dd633ed"); | ||
} | ||
|
||
private void button1_Click(object sender, System.EventArgs e) | ||
{ | ||
this.Close(); | ||
} | ||
|
||
private void About_Form_Shown(object sender, System.EventArgs e) | ||
{ | ||
Translate_Class.Translate(this); | ||
} | ||
} | ||
} |
Oops, something went wrong.