recrownedgtk/RecrownedAthenaeum/Setup.cs

16 lines
440 B
C#
Raw Normal View History

using Microsoft.Xna.Framework;
namespace RecrownedAthenaeum
{
/// <summary>
/// All variables here should be for RecrownedAthenaeum to use when needed and thus eliminates unessecary passing.
/// </summary>
public static class Setup
{
/// <summary>
/// The graphics device that will be used by default.
/// </summary>
public static GraphicsDeviceManager graphicsDeviceManager;
}
}