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.
20 lines
439 B
20 lines
439 B
1 month ago
|
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);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|