BizHawk/BizHawk.Client.EmuHawk/GlobalWin.cs

27 lines
881 B
C#
Raw Normal View History

2013-10-27 16:26:37 +00:00
using SlimDX.Direct3D9;
2013-10-25 01:01:35 +00:00
using SlimDX.DirectSound;
using BizHawk.Client.Common;
namespace BizHawk.Client.EmuHawk
2013-10-25 01:01:35 +00:00
{
public static class GlobalWin
2013-10-25 01:01:35 +00:00
{
public static MainForm MainForm;
public static ToolManager Tools;
2013-10-25 01:01:35 +00:00
#if WINDOWS
public static DirectSound DSound;
public static Direct3D Direct3D;
#endif
public static Sound Sound;
public static IRenderer RenderPanel;
public static OSDManager OSD = new OSDManager();
public static DisplayManager DisplayManager = new DisplayManager();
//input state which has been destined for game controller inputs are coalesced here
//public static ControllerInputCoalescer ControllerInputCoalescer = new ControllerInputCoalescer();
2013-10-25 01:01:35 +00:00
//input state which has been destined for client hotkey consumption are colesced here
public static InputCoalescer HotkeyCoalescer = new InputCoalescer();
}
}