Skip to content

Commit

Permalink
New_Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Gorkido committed Sep 1, 2021
1 parent 0bc0c9d commit 8182a3d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions CSGO-Cheat-Cleaner-Detector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -271,11 +271,11 @@
<Compile Include="Exit-Form.Designer.cs">
<DependentUpon>Exit-Form.cs</DependentUpon>
</Compile>
<Compile Include="Cleaner-Login.cs">
<Compile Include="Login.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Cleaner-Login.Designer.cs">
<DependentUpon>Cleaner-Login.cs</DependentUpon>
<Compile Include="Login.Designer.cs">
<DependentUpon>Login.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
Expand All @@ -297,8 +297,8 @@
<EmbeddedResource Include="Exit-Form.resx">
<DependentUpon>Exit-Form.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Cleaner-Login.resx">
<DependentUpon>Cleaner-Login.cs</DependentUpon>
<EmbeddedResource Include="Login.resx">
<DependentUpon>Login.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
Expand Down
10 changes: 5 additions & 5 deletions Cleaner-Login.Designer.cs → Login.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cleaner-Login.cs → Login.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@

namespace CSGO_Cheat_Cleaner_Detector
{
public partial class Cleaner_Login_Form : Form
public partial class Login_Form : Form
{
public Cleaner_Login_Form()
public Login_Form()
{
InitializeComponent();
}
Expand Down Expand Up @@ -118,7 +118,7 @@ private void Login_MouseDown(object sender, MouseEventArgs e)
{
MessageBox.Show("Password Is Correct!");
Hide();
Cleaner_Form openTest = new Cleaner_Form();
Start openTest = new Start();
openTest.Show();
}
else
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ private static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Start());
Application.Run(new Login_Form());
}
}
}
2 changes: 1 addition & 1 deletion Start.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private void CSGO_Cheat_Cleaner_MouseDown(object sender, MouseEventArgs e)
{
Clock1Timer.Enabled = false;
Hide();
Cleaner_Login_Form openTest = new Cleaner_Login_Form();
Cleaner_Form openTest = new Cleaner_Form();
openTest.Show();
}

Expand Down

0 comments on commit 8182a3d

Please sign in to comment.