29 lines
758 B
C#
29 lines
758 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
|
|
{
|
|
/// <summary>
|
|
/// Defines the index of player for various MonoGame components.
|
|
/// </summary>
|
|
public enum PlayerIndex
|
|
{
|
|
/// <summary>
|
|
/// The first player index.
|
|
/// </summary>
|
|
One = 0,
|
|
/// <summary>
|
|
/// The second player index.
|
|
/// </summary>
|
|
Two = 1,
|
|
/// <summary>
|
|
/// The third player index.
|
|
/// </summary>
|
|
Three = 2,
|
|
/// <summary>
|
|
/// The fourth player index.
|
|
/// </summary>
|
|
Four = 3
|
|
}
|
|
} |