// 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
{
///
/// Defines the faces in a cube map for the class.
///
public enum CubeMapFace
{
///
/// Positive X face in the cube map.
///
PositiveX,
///
/// Negative X face in the cube map.
///
NegativeX,
///
/// Positive Y face in the cube map.
///
PositiveY,
///
/// Negative Y face in the cube map.
///
NegativeY,
///
/// Positive Z face in the cube map.
///
PositiveZ,
///
/// Negative Z face in the cube map.
///
NegativeZ
}
}