diff options
| author | Richie Moch <[email protected]> | 2018-12-23 23:41:07 -0600 |
|---|---|---|
| committer | Richie Moch <[email protected]> | 2018-12-23 23:41:07 -0600 |
| commit | 87546f325f6fb24dcc5ab34851cc06b074d79984 (patch) | |
| tree | 4905888bc331bc9bb9d5ca060a4a5811210213b2 /ShiftOS.Main/Apps/Breakout.Designer.cs | |
| parent | 8f34b3a0c7118abb81526a3dc5f435ba8f8485f8 (diff) | |
| download | shiftos-rewind-87546f325f6fb24dcc5ab34851cc06b074d79984.tar.gz shiftos-rewind-87546f325f6fb24dcc5ab34851cc06b074d79984.tar.bz2 shiftos-rewind-87546f325f6fb24dcc5ab34851cc06b074d79984.zip | |
Wrote Breakout, and only with minimal bugs this time!
Diffstat (limited to 'ShiftOS.Main/Apps/Breakout.Designer.cs')
| -rw-r--r-- | ShiftOS.Main/Apps/Breakout.Designer.cs | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/ShiftOS.Main/Apps/Breakout.Designer.cs b/ShiftOS.Main/Apps/Breakout.Designer.cs new file mode 100644 index 0000000..d36d691 --- /dev/null +++ b/ShiftOS.Main/Apps/Breakout.Designer.cs @@ -0,0 +1,85 @@ +namespace ShiftOS.Main.Apps +{ + partial class Breakout + { + /// <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 Component 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.ball = new System.Windows.Forms.PictureBox(); + this.gameTimer = new System.Windows.Forms.Timer(this.components); + this.playerPaddle = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.ball)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.playerPaddle)).BeginInit(); + this.SuspendLayout(); + // + // ball + // + this.ball.BackColor = System.Drawing.Color.White; + this.ball.Location = new System.Drawing.Point(393, 229); + this.ball.Name = "ball"; + this.ball.Size = new System.Drawing.Size(18, 18); + this.ball.TabIndex = 2; + this.ball.TabStop = false; + // + // gameTimer + // + this.gameTimer.Interval = 20; + this.gameTimer.Tick += new System.EventHandler(this.gameTimer_Tick); + // + // playerPaddle + // + this.playerPaddle.BackColor = System.Drawing.Color.White; + this.playerPaddle.Location = new System.Drawing.Point(337, 421); + this.playerPaddle.Name = "playerPaddle"; + this.playerPaddle.Size = new System.Drawing.Size(142, 15); + this.playerPaddle.TabIndex = 3; + this.playerPaddle.TabStop = false; + // + // Pong + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Black; + this.Controls.Add(this.playerPaddle); + this.Controls.Add(this.ball); + this.ForeColor = System.Drawing.Color.White; + this.Name = "Pong"; + this.Size = new System.Drawing.Size(664, 470); + this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Pong_KeyDown); + this.KeyUp += new System.Windows.Forms.KeyEventHandler(this.Pong_KeyUp); + ((System.ComponentModel.ISupportInitialize)(this.ball)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.playerPaddle)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + private System.Windows.Forms.PictureBox ball; + private System.Windows.Forms.Timer gameTimer; + private System.Windows.Forms.PictureBox playerPaddle; + } +} |
