mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-23 08:43:50 +02:00
23 lines
480 B
C#
23 lines
480 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 VRCX
|
|
{
|
|
public partial class InvisPopup : Form
|
|
{
|
|
public InvisPopup()
|
|
{
|
|
StartPosition = FormStartPosition.Manual;
|
|
Location = new Point(-Width, -Height);
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|