XboxConsole/XboxConsole.Infrastructure/XboxOperatingSystem.cs

26 строки
864 B
C#
Исходник Постоянная ссылка Обычный вид История

2017-12-02 00:25:53 +03:00
//------------------------------------------------------------------------------
// <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
}
}