BizHawk/BizHawk.Client.EmuHawk/GlobalWin.cs

32 lines
936 B
C#

using BizHawk.Bizware.BizwareGL;
// ReSharper disable StyleCop.SA1401
namespace BizHawk.Client.EmuHawk
{
public static class GlobalWin
{
public static MainForm MainForm;
public static ToolManager Tools;
/// <summary>
/// the IGL to be used for rendering
/// </summary>
public static IGL GL;
/// <summary>
/// The IGL_TK to be used for specifically opengl operations (accessing textures from opengl-based cores)
/// </summary>
public static IGL_TK IGL_GL;
public static Sound Sound;
public static readonly OSDManager OSD = new OSDManager();
public static DisplayManager DisplayManager;
public static GLManager GLManager;
public static int ExitCode;
public static Communication.HttpCommunication httpCommunication = null;
public static Communication.SocketServer socketServer = null;
public static Communication.MemoryMappedFiles memoryMappedFiles = null;
}
}