forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlayerIndex.cs
More file actions
29 lines (28 loc) · 793 Bytes
/
PlayerIndex.cs
File metadata and controls
29 lines (28 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// MonoGame - Copyright (C) MonoGame Foundation, Inc
// 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
}
}