Files
LuaCsForBarotraumaEP/Libraries/MonoGame.Framework/Src/MonoGame.Framework/Graphics/GraphicsDeviceStatus.cs
T
2019-06-25 16:00:44 +03:00

27 lines
673 B
C#

// MonoGame - Copyright (C) The MonoGame Team
// This file is subject to the terms and conditions defined in
// file 'LICENSE.txt', which is part of this source code package.
namespace Microsoft.Xna.Framework.Graphics
{
/// <summary>
/// Describes the status of the <see cref="GraphicsDevice"/>.
/// </summary>
public enum GraphicsDeviceStatus
{
/// <summary>
/// The device is normal.
/// </summary>
Normal,
/// <summary>
/// The device has been lost.
/// </summary>
Lost,
/// <summary>
/// The device has not been reset.
/// </summary>
NotReset
}
}