16 lines
448 B
C#
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;
|
|
}
|
|
}
|