Files
Fishing2Server/Hotfix/Outer/Authentication/System/AccountSystem.cs
2025-07-26 17:58:25 +08:00

15 lines
320 B
C#

using Fantasy;
using Fantasy.Entitas.Interface;
namespace NB.Authentication;
public class AccountDestroySystem : DestroySystem<Account>
{
protected override void Destroy(Account self)
{
self.Username = null;
self.Password = null;
self.CreateTime = 0;
self.LoginTime = 0;
}
}