Files
Fishing2Server/Hotfix/Outer/Gate/System/GameAccount/GameAccountSystem.cs
2025-07-16 17:47:53 +08:00

14 lines
313 B
C#

using Fantasy.Entitas.Interface;
using Fantasy.Gate;
namespace System.Gate;
public sealed class GameAccountDestroySystem : DestroySystem<GameAccount>
{
protected override void Destroy(GameAccount self)
{
self.CreateTime = 0;
self.LoginTime = 0;
self.SessionRunTimeId = 0;
}
}