using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Server
{
///
/// 记录游戏的赢取 和 税收
///
public interface IGameWinMoney
{
///
/// 赢的游戏币
///
Int64 winmoney {
get;
}
///
/// 增加税收的游戏币
///
Int64 taxmoney {
get;
}
///
/// 添加赢取的金额
///
///
void AddWinMoney(long money);
///
/// 赢取的税收
///
///
void AddTaxMoney(long money);
}
}