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.
26 lines
636 B
26 lines
636 B
using ProtoCSStruct;
|
|
|
|
namespace Game
|
|
{
|
|
public class SignAct:AbstractActivity
|
|
{
|
|
public override void OnRoleEnter(PlayerOnGame player)
|
|
{
|
|
}
|
|
|
|
protected override void OnStateChange(PlayerOnGame player, int actId, ActivityState state)
|
|
{
|
|
SignSvc.InitOrResetData(player, actId, state);
|
|
}
|
|
|
|
public override void OnSystemUnlock(PlayerOnGame player, int sysId)
|
|
{
|
|
}
|
|
|
|
protected override void OnDailyRefresh(PlayerOnGame player, ref DBActInfo activityInfo)
|
|
{
|
|
SignSvc.OnDailyRefresh(player, ref activityInfo);
|
|
}
|
|
}
|
|
}
|
|
|
|
|