aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-07-14 09:43:33 -0500
committerlempamo <[email protected]>2017-07-14 09:43:33 -0500
commitc579cf249977c9aa6abef79ef39c6d28960fea6c (patch)
treedbcfda818dd6bf89e240db9df5a63c983cb90c0c /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs
parent7c02e210108003913dfc77a001f546bb0617dba8 (diff)
downloadhistacom2-c579cf249977c9aa6abef79ef39c6d28960fea6c.tar.gz
histacom2-c579cf249977c9aa6abef79ef39c6d28960fea6c.tar.bz2
histacom2-c579cf249977c9aa6abef79ef39c6d28960fea6c.zip
Removed hwcv
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs36
1 files changed, 0 insertions, 36 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs
deleted file mode 100644
index c1a203a..0000000
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs
+++ /dev/null
@@ -1,36 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Drawing;
-using System.Data;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows.Forms;
-
-namespace TimeHACK.OS.Win95.Win95Apps
-{
- public partial class WinClassicHWCV : UserControl
- {
- public WinClassicHWCV()
- {
- InitializeComponent();
- Button1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2);
- }
-
- private void Button1_Click(object sender, EventArgs e)
- {
- if (TextBox1.Text == "www.12padams.com" || TextBox1.Text == "http://www.12padams.com/")
- {
- Label3.Show();
- Label3.Text = "Hidden Content Found: Time Distorter";
- TitleScreen.frm95.hiddenpadamsFound = true;
- }
- else
- {
- Label3.Show();
- Label3.Text = "No Content Found";
- }
- }
- }
-}