diff --git a/BizHawk.MultiClient/BizHawk.MultiClient.csproj b/BizHawk.MultiClient/BizHawk.MultiClient.csproj index 7a1a2c1b41..02f2b107dd 100644 --- a/BizHawk.MultiClient/BizHawk.MultiClient.csproj +++ b/BizHawk.MultiClient/BizHawk.MultiClient.csproj @@ -484,6 +484,14 @@ N64VideoPluginconfig.cs + + + + Form + + + NewCheatForm.cs + Form @@ -810,6 +818,9 @@ Resources.resx True + + NewCheatForm.cs + HexColor.cs diff --git a/BizHawk.MultiClient/BizHawk.MultiClient_v4.5.csproj b/BizHawk.MultiClient/BizHawk.MultiClient_v4.5.csproj index 4206423223..f91ee798be 100644 --- a/BizHawk.MultiClient/BizHawk.MultiClient_v4.5.csproj +++ b/BizHawk.MultiClient/BizHawk.MultiClient_v4.5.csproj @@ -486,6 +486,14 @@ SNESOptions.cs + + + + Form + + + NewCheatForm.cs + Form diff --git a/BizHawk.MultiClient/tools/Cheats/CheatList.cs b/BizHawk.MultiClient/tools/Cheats/CheatList.cs new file mode 100644 index 0000000000..8d5b6a6cac --- /dev/null +++ b/BizHawk.MultiClient/tools/Cheats/CheatList.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BizHawk.MultiClient.tools.Cheats +{ + class CheatList + { + } +} diff --git a/BizHawk.MultiClient/tools/Cheats/NewCheat.cs b/BizHawk.MultiClient/tools/Cheats/NewCheat.cs new file mode 100644 index 0000000000..33127de9f4 --- /dev/null +++ b/BizHawk.MultiClient/tools/Cheats/NewCheat.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace BizHawk.MultiClient.tools.Cheats +{ + class NewCheat + { + } +} diff --git a/BizHawk.MultiClient/tools/Cheats/NewCheatForm.Designer.cs b/BizHawk.MultiClient/tools/Cheats/NewCheatForm.Designer.cs new file mode 100644 index 0000000000..45389de035 --- /dev/null +++ b/BizHawk.MultiClient/tools/Cheats/NewCheatForm.Designer.cs @@ -0,0 +1,47 @@ +namespace BizHawk.MultiClient.tools.Cheats +{ + partial class NewCheatForm + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.SuspendLayout(); + // + // NewCheatForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(284, 262); + this.Name = "NewCheatForm"; + this.Text = "NewCheatForm"; + this.Load += new System.EventHandler(this.NewCheatForm_Load); + this.ResumeLayout(false); + + } + + #endregion + } +} \ No newline at end of file diff --git a/BizHawk.MultiClient/tools/Cheats/NewCheatForm.cs b/BizHawk.MultiClient/tools/Cheats/NewCheatForm.cs new file mode 100644 index 0000000000..ead48330c5 --- /dev/null +++ b/BizHawk.MultiClient/tools/Cheats/NewCheatForm.cs @@ -0,0 +1,25 @@ +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; + +namespace BizHawk.MultiClient.tools.Cheats +{ + public partial class NewCheatForm : Form + { + public NewCheatForm() + { + InitializeComponent(); + } + + private void NewCheatForm_Load(object sender, EventArgs e) + { + + } + } +} diff --git a/BizHawk.MultiClient/tools/Cheats/NewCheatForm.resx b/BizHawk.MultiClient/tools/Cheats/NewCheatForm.resx new file mode 100644 index 0000000000..29dcb1b3a3 --- /dev/null +++ b/BizHawk.MultiClient/tools/Cheats/NewCheatForm.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file