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

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
}
}