2019-01-22 01:56:51 +00:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
|
|
|
|
|
namespace RecrownedAthenaeum
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// All variables here should be for RecrownedAthenaeum to use when needed and thus eliminates unessecary passing.
|
|
|
|
|
/// </summary>
|
2019-01-22 04:18:22 +00:00
|
|
|
|
public static class Configuration
|
2019-01-22 01:56:51 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The graphics device that will be used by default.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static GraphicsDeviceManager graphicsDeviceManager;
|
|
|
|
|
}
|
|
|
|
|
}
|