示例#1
0
 public MessageShopAttribute(MessageShopStyle messageShopStyle, Item item1, int price1, Item item2, int price2)
 {
     MessageShopStyle = messageShopStyle;
     Items            = new Item[] { item1, item2 };
     Prices           = new int[] { price1, price2 };
 }
示例#2
0
 public MessageShopAttribute(MessageShopStyle messageShopStyle, Item item1, Item item2)
 {
     MessageShopStyle = messageShopStyle;
     Items = new Item[] { item1, item2 };
 }