38 lines
696 B
C#
38 lines
696 B
C#
/*
|
|
* Created by SharpDevelop.
|
|
* User: Owner
|
|
* Date: 9/5/2017
|
|
* Time: 8:52 PM
|
|
*
|
|
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
|
*/
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace RBXLegacyLauncher
|
|
{
|
|
/// <summary>
|
|
/// Description of Form1.
|
|
/// </summary>
|
|
public partial class ClientSettings : Form
|
|
{
|
|
public ClientSettings()
|
|
{
|
|
//
|
|
// The InitializeComponent() call is required for Windows Forms designer support.
|
|
//
|
|
InitializeComponent();
|
|
|
|
//
|
|
// TODO: Add constructor code after the InitializeComponent() call.
|
|
//
|
|
}
|
|
|
|
void CheckBox2CheckedChanged(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|