aboutsummaryrefslogtreecommitdiff
path: root/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs
diff options
context:
space:
mode:
authorMichaelTheShifter <[email protected]>2016-06-25 08:10:03 -0400
committerMichaelTheShifter <[email protected]>2016-06-25 08:10:03 -0400
commit84f689b91a73e512b035df40bbcf556b008a3b81 (patch)
treeda1020b2b5866c7ce300ac7b9c97112fe80fa1b3 /source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs
parent6707e2076a63dafab686fd533c95fb8ceb6c23fa (diff)
downloadshiftos-c--84f689b91a73e512b035df40bbcf556b008a3b81.tar.gz
shiftos-c--84f689b91a73e512b035df40bbcf556b008a3b81.tar.bz2
shiftos-c--84f689b91a73e512b035df40bbcf556b008a3b81.zip
Sort source code into folders.
It feels better to know what's responsible for what... Plus I removed some un-needed C# stuff.
Diffstat (limited to 'source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs')
-rw-r--r--source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs116
1 files changed, 116 insertions, 0 deletions
diff --git a/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs b/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs
new file mode 100644
index 0000000..12e30ab
--- /dev/null
+++ b/source/WindowsFormsApplication1/Gameplay/HijackScreen.Designer.cs
@@ -0,0 +1,116 @@
+using System;
+
+namespace ShiftOS
+{
+ partial class HijackScreen
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.lblHijack = new System.Windows.Forms.Label();
+ this.conversationtimer = new System.Windows.Forms.Timer(this.components);
+ this.textgen = new System.Windows.Forms.Timer(this.components);
+ this.lblhackwords = new System.Windows.Forms.Label();
+ this.hackeffecttimer = new System.Windows.Forms.Timer(this.components);
+ this.BackgroundWorker1 = new System.ComponentModel.BackgroundWorker();
+ this.btnskip = new System.Windows.Forms.Button();
+ this.SuspendLayout();
+ //
+ // lblHijack
+ //
+ this.lblHijack.Anchor = System.Windows.Forms.AnchorStyles.None;
+ this.lblHijack.AutoSize = true;
+ this.lblHijack.BackColor = System.Drawing.Color.WhiteSmoke;
+ this.lblHijack.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.lblHijack.ForeColor = System.Drawing.Color.DimGray;
+ this.lblHijack.Location = new System.Drawing.Point(143, 193);
+ this.lblHijack.Name = "lblHijack";
+ this.lblHijack.Size = new System.Drawing.Size(18, 25);
+ this.lblHijack.TabIndex = 0;
+ this.lblHijack.Text = "\\";
+ //
+ // textgen
+ //
+ this.textgen.Interval = 20;
+ //
+ // lblhackwords
+ //
+ this.lblhackwords.AutoSize = true;
+ this.lblhackwords.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.lblhackwords.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+ this.lblhackwords.ForeColor = System.Drawing.SystemColors.ButtonFace;
+ this.lblhackwords.Location = new System.Drawing.Point(0, 0);
+ this.lblhackwords.Name = "lblhackwords";
+ this.lblhackwords.Size = new System.Drawing.Size(127, 18);
+ this.lblhackwords.TabIndex = 1;
+ this.lblhackwords.Text = "Hijack in progress";
+ //
+ // hackeffecttimer
+ //
+ this.hackeffecttimer.Interval = 50;
+ //
+ // btnskip
+ //
+ this.btnskip.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
+ this.btnskip.ForeColor = System.Drawing.Color.White;
+ this.btnskip.Location = new System.Drawing.Point(566, 422);
+ this.btnskip.Name = "btnskip";
+ this.btnskip.Size = new System.Drawing.Size(75, 23);
+ this.btnskip.TabIndex = 2;
+ this.btnskip.Text = "Skip";
+ this.btnskip.UseVisualStyleBackColor = true;
+ this.btnskip.Visible = false;
+ this.btnskip.Click += new System.EventHandler(this.btnskip_Click);
+ //
+ // HijackScreen
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.BackColor = System.Drawing.Color.Silver;
+ this.ClientSize = new System.Drawing.Size(653, 457);
+ this.Controls.Add(this.btnskip);
+ this.Controls.Add(this.lblhackwords);
+ this.Controls.Add(this.lblHijack);
+ this.Name = "HijackScreen";
+ this.Text = "ShiftOS";
+ this.TransparencyKey = System.Drawing.Color.White;
+ this.Load += new System.EventHandler(this.HijackScreen_Load);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+ internal System.Windows.Forms.Label lblHijack;
+ internal System.Windows.Forms.Timer conversationtimer;
+ internal System.Windows.Forms.Timer textgen;
+ internal System.Windows.Forms.Label lblhackwords;
+ internal System.Windows.Forms.Timer hackeffecttimer;
+ internal System.ComponentModel.BackgroundWorker BackgroundWorker1;
+ #endregion
+
+ private System.Windows.Forms.Button btnskip;
+ }
+} \ No newline at end of file