-
Notifications
You must be signed in to change notification settings - Fork 476
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Sampson
committed
Mar 28, 2018
1 parent
05f053a
commit 159f7fe
Showing
24 changed files
with
44,198 additions
and
775 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
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
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,45 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
using BorderlessGaming.Logic.Models; | ||
using BorderlessGaming.Logic.System; | ||
|
||
namespace BorderlessGaming.Forms | ||
{ | ||
public partial class Rainway : Form | ||
{ | ||
public Rainway() | ||
{ | ||
SetStyle(ControlStyles.OptimizedDoubleBuffer, true); | ||
InitializeComponent(); | ||
} | ||
|
||
private void Rainway_Load(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
|
||
private void Rainway_Click(object sender, EventArgs e) | ||
{ | ||
Tools.GotoSite("https://rainway.io/?ref=borderlessgaming2"); | ||
this.Close(); | ||
} | ||
|
||
private void checkBox1_CheckedChanged(object sender, EventArgs e) | ||
{ | ||
var checkbox = (CheckBox) sender; | ||
Config.Instance.AppSettings.ShowAdOnStart = checkbox.Checked != true; | ||
} | ||
|
||
private void Rainway_MouseEnter(object sender, EventArgs e) | ||
{ | ||
Cursor = Cursors.Hand; | ||
} | ||
} | ||
} |
Oops, something went wrong.