#region License /* FNA - XNA4 Reimplementation for Desktop Platforms * Copyright 2009-2016 Ethan Lee and the MonoGame Team * * Released under the Microsoft Public License. * See LICENSE for details. */ #endregion namespace Microsoft.Xna.Framework { /// /// Defines the index of player for various input components. /// public enum PlayerIndex { /// /// The first player index. /// One = 0, /// /// The second player index. /// Two = 1, /// /// The third player index. /// Three = 2, /// /// The fourth player index. /// Four = 3 } }