mirror of
https://github.com/HistacomUnity/Histacom2-old.git
synced 2025-01-23 09:36:41 -05:00
28 lines
645 B
C#
28 lines
645 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using TimeHACK.Engine;
|
|
|
|
namespace TimeHACK.WinClassicForms
|
|
{
|
|
public partial class wmTemplate : Form
|
|
{
|
|
public wmTemplate()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void wmTemplate_Load(object sender, EventArgs e)
|
|
{
|
|
WindowManager wm = new WindowManager();
|
|
TestApp ta = new TestApp();
|
|
wm.startWinClassic(ta, "idk", null);
|
|
}
|
|
}
|
|
}
|