26 строки
864 B
C#
26 строки
864 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="XboxOperatingSystem.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace Microsoft.Internal.GamesTest.Xbox
|
|
{
|
|
/// <summary>
|
|
/// An enumeration describing each operating system on
|
|
/// the Xbox.
|
|
/// </summary>
|
|
public enum XboxOperatingSystem
|
|
{
|
|
/// <summary>
|
|
/// Represents the "System" operating system. This is also sometimes known as the "SRA".
|
|
/// </summary>
|
|
System,
|
|
|
|
/// <summary>
|
|
/// Represents the "Title" operating system. This is also sometimes known as the "ERA".
|
|
/// </summary>
|
|
Title
|
|
}
|
|
}
|