mirror of
https://bitbucket.org/cjdskunkworks/lynxastrodewcontroller.git
synced 2026-05-03 09:18:51 +00:00
15 lines
258 B
C#
15 lines
258 B
C#
using System.Windows.Forms;
|
|
|
|
namespace ASCOM.LynxAstro.DewController
|
|
{
|
|
public partial class frmMain : Form
|
|
{
|
|
delegate void SetTextCallback(string text);
|
|
|
|
public frmMain()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
}
|
|
} |