From f0be68047a246208aa30974990e7c3ec8dd8252a Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 27 Aug 2018 21:06:43 -0400 Subject: Added crashing --- Project Ports/Crash.cs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 Project Ports/Crash.cs (limited to 'Project Ports/Crash.cs') diff --git a/Project Ports/Crash.cs b/Project Ports/Crash.cs new file mode 100644 index 0000000..a5273d3 --- /dev/null +++ b/Project Ports/Crash.cs @@ -0,0 +1,29 @@ +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 PortEngine; + +namespace Project_Ports +{ + public partial class Crash : Form + { + public Crash() + { + InitializeComponent(); + } + + private void btnStartOver_Click(object sender, EventArgs e) + { + Properties.Settings.Default.hijacked = true; + Properties.Settings.Default.chatterStoryline = true; + this.Close(); + + } + } +} -- cgit v1.2.3