You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
915 B
18 lines
915 B
namespace w230415_classes
|
|
{
|
|
public class PiCasino : Casino
|
|
{
|
|
|
|
/// <summary>
|
|
/// .ctor
|
|
/// </summary>
|
|
public PiCasino()
|
|
{
|
|
GameList.Add(new CGame() { Name = "Однорукий бандит", Cash = 999000, Serial = Guid.NewGuid().ToString("N") });
|
|
GameList.Add(new CGame() { Name = "Однорукий бандит", Cash = 929000, Serial = Guid.NewGuid().ToString("N"), IsActive = false });
|
|
GameList.Add(new CGame() { Name = "Однорукий бандит", Cash = 929120, Serial = Guid.NewGuid().ToString("N") });
|
|
GameList.Add(new CGame() { Name = "Однорукий бандит", Cash = 929220, Serial = Guid.NewGuid().ToString("N"), IsActive = false });
|
|
GameList.Add(new CGame() { Name = "Однорукий бандит", Cash = 999100, Serial = Guid.NewGuid().ToString("N") });
|
|
}
|
|
}
|
|
}
|