mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
20 lines
415 B
C#
20 lines
415 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;
|
|
|
|
namespace MSFSPopoutPanelManager
|
|
{
|
|
public partial class PopoutCoorOverlayForm : Form
|
|
{
|
|
public PopoutCoorOverlayForm()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|