Пример #1
0
 public Shop(string titleText, string[] menuText, Player player, Applet.Shop shop)
 {
     _shop = shop;
     _player = player;
     _menuText = menuText;
     _titleText = titleText;
     _background = new ImageUnit(BackgroundImageName);
     _choiceBackground = new ImageUnit(ChoiceBackgroundImageName);
     _currentChoice = 0;
 }
Пример #2
0
 public GoldShop(string titleText, string[] menuText, Player player, Applet.Shop shop)
     : base(titleText, menuText, player, shop)
 {
 }