aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/Template/Infobox95.cs
blob: e764e472dca72cb9bf967a2566226464fea80ca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Drawing;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace TimeHACK.Engine.Template
{
    public partial class Infobox95 : UserControl
    {
        public Infobox95()
        {
            InitializeComponent();
        }

        private void ok_Click(object sender, EventArgs e)
        {
            this.ParentForm.Close();
        }
    }
}