Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BuyNPCItemHandler"/> class.
 /// </summary>
 public BuyNPCItemHandler()
 {
     this.buyAction = new BuyNpcItemAction();
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BuyNPCItemHandler"/> class.
 /// </summary>
 /// <param name="gameContext">The game context.</param>
 public BuyNPCItemHandler(IGameContext gameContext)
 {
     this.buyAction = new BuyNpcItemAction(gameContext);
 }