diff options
| author | lempamo <[email protected]> | 2017-08-08 15:42:50 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-08-08 15:42:50 -0400 |
| commit | 1d56f20e085a041c007fb7ac1fd64c7b8aabfa0f (patch) | |
| tree | 40562ddc80dda0c2372c97d6a0a7622c90e19654 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs | |
| parent | ebe1b011db93d47b7a29b8b4d1e371b1a97bffce (diff) | |
| download | histacom2-1d56f20e085a041c007fb7ac1fd64c7b8aabfa0f.tar.gz histacom2-1d56f20e085a041c007fb7ac1fd64c7b8aabfa0f.tar.bz2 histacom2-1d56f20e085a041c007fb7ac1fd64c7b8aabfa0f.zip | |
time distorter transition part 1
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs index e2c8d64..f7776b1 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs @@ -22,6 +22,12 @@ namespace TimeHACK.OS.Win95 _counter = counter; } + public int Counter + { + get { return _counter; } + set { _counter = value; } + } + private void btnGo_Click(object sender, EventArgs e) { lblCountDown.Visible = true; |
