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.
 
 
 
 
 
 

30 lines
707 B

using System.Collections.Generic;
using System.Linq;
using ProtoCSStruct;
namespace Game;
public class PowerPassAct : AbstractLoopActivity
{
public override void OnRoleEnter(PlayerOnGame player)
{
BattlePassSvc.OnRoleEnter(player,ActivityType.PowerPass);
}
protected override void OnStateChange(PlayerOnGame player, int actId, ActivityState state)
{
BattlePassSvc.OnStateChange(player,actId,state);
}
public override void OnSystemUnlock(PlayerOnGame player, int sysId)
{
}
protected override void OnDailyRefresh(PlayerOnGame player, ref DBActInfo activityInfo)
{
BattlePassSvc.OnDailyRefresh(player,ref activityInfo);
}
}