コード例 #1
0
        /// <summary>
        /// Gives the receiver the money and informs everyone else
        /// </summary>
        /// <param name="receiver"></param>
        /// <param name="amount"></param>
        protected void SendMoney(Character receiver, uint amount)
        {
            receiver.AddMoney(amount);

            LootHandler.SendClearMoney(this);
        }