namespace ET { public class AccountInfoComponentDestroySystem : DestroySystem { public override void Destroy(AccountInfoComponent self) { self.Token = string.Empty; self.AccountId = 0; self.RealmKey = string.Empty; self.RealmAddress = string.Empty; self.Age = 0; self.Account = string.Empty; } } public class AccountInfoComponentSystem { } }