-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameInfo.cs
31 lines (27 loc) · 830 Bytes
/
GameInfo.cs
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
30
31
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SnakesAndLadders.UI
{
public class GameInfo
{
public GameStyle GameStyle { get; set; }
public string PlayerName1 { get; set; }
public string PlayerName2 { get; set; }
public string PlayerName3 { get; set; }
public string PlayerName4 { get; set; }
public GameInfo()
{
}
public GameInfo(GameStyle gameStyle, string playerName1, string playerName2, string playerName3, string playerName4)
{
GameStyle = gameStyle;
PlayerName1 = playerName1;
PlayerName2 = playerName2;
PlayerName3 = playerName3;
PlayerName4 = playerName4;
}
}
}