mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-22 17:12:56 -05:00
e0b4f16b01
saving energy etc
20 lines
404 B
C#
20 lines
404 B
C#
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();
|
|
}
|
|
}
|
|
}
|