aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win2K/Win2KApps/SurviveTheDay.cs
blob: 7140e7d2ad32179f8d73a0524baa9d9131cc0ca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.Win2K.Win2KApps
{
    public partial class SurviveTheDay : UserControl
    {
        public SurviveTheDay()
        {
            InitializeComponent();
        }

        private void typer(string newtxt)
        {
            words.Text = "";
        }
    }
}