From f30dcf5ef41d54c588d7b42c48be8d941abba72e Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 8 Jan 2017 09:57:10 -0500 Subject: Initial upload --- ShiftOS_TheReturn/AltTabWindow.cs | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 ShiftOS_TheReturn/AltTabWindow.cs (limited to 'ShiftOS_TheReturn/AltTabWindow.cs') diff --git a/ShiftOS_TheReturn/AltTabWindow.cs b/ShiftOS_TheReturn/AltTabWindow.cs new file mode 100644 index 0000000..b0c535e --- /dev/null +++ b/ShiftOS_TheReturn/AltTabWindow.cs @@ -0,0 +1,29 @@ +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 ShiftOS.Engine { + public partial class AltTabWindow : Form { + public AltTabWindow() { + InitializeComponent(); + } + + internal void CycleBack() { + Console.WriteLine("Cycle Backwards"); + } + + internal void CycleForwards() { + Console.WriteLine("Cycle Forwards"); + } + + private void AltTabWindow_Load(object sender, EventArgs e) { + + } + } +} -- cgit v1.2.3