ShiftOS-Rewind/ShiftOS.Engine/WindowManager/ShiftWindow.cs
AShifter 9107510c49 Add proper WM and Remove old source
Added a proper, working WM. I also got rid of the old source as we could
just make a new repo for that.
2017-09-24 12:32:50 -06:00

20 lines
401 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ShiftOS.Engine.WindowManager
{
public partial class ShiftWindow : Form
{
public ShiftWindow()
{
InitializeComponent();
}
}
}