Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
AmiiBomb v0.2 Alpha
AmiiBombuino v0.1 Alpha
  • Loading branch information
AcK77 committed May 10, 2017
1 parent c11de24 commit e051fa7
Show file tree
Hide file tree
Showing 159 changed files with 18,595 additions and 0 deletions.
22 changes: 22 additions & 0 deletions AmiiBomb.sln
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
188 changes: 188 additions & 0 deletions AmiiBomb/About_Form.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 48 additions & 0 deletions AmiiBomb/About_Form.cs
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);
}
}
}
Loading

0 comments on commit e051fa7

Please sign in to comment.