(ded4a3e0a) v0.9.0.7
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
// 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user