recrownedathenaeum/RecrownedAthenaeum/Configuration.cs
2019-01-21 22:18:22 -06:00

16 lines
448 B
C#

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 Configuration
{
/// <summary>
/// The graphics device that will be used by default.
/// </summary>
public static GraphicsDeviceManager graphicsDeviceManager;
}
}