aboutsummaryrefslogtreecommitdiff
path: root/Project Ports/Crash.cs
diff options
context:
space:
mode:
authorAndrew <alee14498@gmail.com>2018-08-27 21:06:43 -0400
committerAndrew <alee14498@gmail.com>2018-08-27 21:06:43 -0400
commitf0be68047a246208aa30974990e7c3ec8dd8252a (patch)
tree8320564185b1234f25d51ba135c844b0284caa07 /Project Ports/Crash.cs
parent129cc4373485a1d1151442ca250ddd8b0d3a8a15 (diff)
downloadProject-Silicon-f0be68047a246208aa30974990e7c3ec8dd8252a.tar.gz
Project-Silicon-f0be68047a246208aa30974990e7c3ec8dd8252a.tar.bz2
Project-Silicon-f0be68047a246208aa30974990e7c3ec8dd8252a.zip
Added crashing
Diffstat (limited to 'Project Ports/Crash.cs')
-rw-r--r--Project Ports/Crash.cs29
1 files changed, 29 insertions, 0 deletions
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();
+
+ }
+ }
+}