// 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 { /// /// Defines the index of player for various MonoGame 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 } }