mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-22 18:02:16 +00:00
ss things 2
This commit is contained in:
parent
281382f120
commit
f765e3ef33
2 changed files with 63 additions and 2 deletions
|
@ -29,6 +29,10 @@
|
|||
private void InitializeComponent()
|
||||
{
|
||||
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
||||
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
||||
this.buttonE = new System.Windows.Forms.Button();
|
||||
this.buttonM = new System.Windows.Forms.Button();
|
||||
this.buttonH = new System.Windows.Forms.Button();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
|
@ -42,13 +46,57 @@
|
|||
this.pictureBox1.TabIndex = 0;
|
||||
this.pictureBox1.TabStop = false;
|
||||
//
|
||||
// tableLayoutPanel1
|
||||
//
|
||||
this.tableLayoutPanel1.ColumnCount = 2;
|
||||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.tableLayoutPanel1.Location = new System.Drawing.Point(4, 39);
|
||||
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
||||
this.tableLayoutPanel1.RowCount = 2;
|
||||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
||||
this.tableLayoutPanel1.Size = new System.Drawing.Size(244, 215);
|
||||
this.tableLayoutPanel1.TabIndex = 1;
|
||||
//
|
||||
// buttonE
|
||||
//
|
||||
this.buttonE.Location = new System.Drawing.Point(4, 261);
|
||||
this.buttonE.Name = "buttonE";
|
||||
this.buttonE.Size = new System.Drawing.Size(75, 23);
|
||||
this.buttonE.TabIndex = 2;
|
||||
this.buttonE.Text = "Easy";
|
||||
this.buttonE.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// buttonM
|
||||
//
|
||||
this.buttonM.Location = new System.Drawing.Point(86, 261);
|
||||
this.buttonM.Name = "buttonM";
|
||||
this.buttonM.Size = new System.Drawing.Size(75, 23);
|
||||
this.buttonM.TabIndex = 3;
|
||||
this.buttonM.Text = "Medium";
|
||||
this.buttonM.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// buttonH
|
||||
//
|
||||
this.buttonH.Location = new System.Drawing.Point(168, 261);
|
||||
this.buttonH.Name = "buttonH";
|
||||
this.buttonH.Size = new System.Drawing.Size(75, 23);
|
||||
this.buttonH.TabIndex = 4;
|
||||
this.buttonH.Text = "Hard";
|
||||
this.buttonH.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// ShiftSweeper
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.Controls.Add(this.buttonH);
|
||||
this.Controls.Add(this.buttonM);
|
||||
this.Controls.Add(this.buttonE);
|
||||
this.Controls.Add(this.tableLayoutPanel1);
|
||||
this.Controls.Add(this.pictureBox1);
|
||||
this.Name = "ShiftSweeper";
|
||||
this.Size = new System.Drawing.Size(270, 333);
|
||||
this.Size = new System.Drawing.Size(275, 333);
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
||||
this.ResumeLayout(false);
|
||||
|
||||
|
@ -57,5 +105,9 @@
|
|||
#endregion
|
||||
|
||||
private System.Windows.Forms.PictureBox pictureBox1;
|
||||
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
||||
private System.Windows.Forms.Button buttonE;
|
||||
private System.Windows.Forms.Button buttonM;
|
||||
private System.Windows.Forms.Button buttonH;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -778,11 +778,20 @@
|
|||
Cost: 2500,
|
||||
Dependencies: "shiftorium_gui",
|
||||
Description: "In the shiftorium GUI but dont know what you can spend because you can't see how many code points are on hand? Well shop easy, because with this upgrade that is now possible! You have to restart the shiftorium for it to work."
|
||||
}
|
||||
},
|
||||
|
||||
// SHIFTSWEEPER
|
||||
|
||||
{
|
||||
Name: "ShiftSweeper",
|
||||
Cost: 800,
|
||||
Dependencies: "app_launcher;shiftletters",
|
||||
Description: "Getting bored with Pong and ShiftLetters? Try this BRAND NEW game called ShiftSweeper!"
|
||||
},
|
||||
{
|
||||
Name: "ShiftSweeper Medium",
|
||||
Cost: 900,
|
||||
Dependencies: "shiftsweeper",
|
||||
Description: "ShiftSweeper getting too easy? Obviously, since you can only play Easy difficulty! However, with this Medium button, you can get a better challenge, and more codepoints!"
|
||||
},
|
||||
]
|
Loading…
Reference in a new issue