You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
439 B

namespace Game
{
public static class OperationLogSvc
{
public static void OnPlayerOnline(PlayerOnGame player)
{
// 运营日志上报
GameBillLogUtils.LogLogin(player, 0);
GameBDCLogUtils.UserLogin(player);
GameBDCLogUtils.RoleLogin(player);
GameTALogUtils.UseSetLogin(player);
GameTALogUtils.LogLogin(player);
}
}
}