blob: 306bf65ed01300725992b0020a2469ac961736a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ShiftOS.Engine {
static class CtrlTabMenu {
public static AltTabWindow altTabWindow;
internal static void Show() {
if(altTabWindow != null) {
altTabWindow = new AltTabWindow();
altTabWindow.Show();
}
}
internal static void CycleBack() {
altTabWindow.CycleBack();
}
internal static void CycleForwards() {
altTabWindow.CycleForwards();
}
}
}
|