- namespace ET
- {
- public class AccountInfoComponentDestroySystem : DestroySystem<AccountInfoComponent>
- {
- public override void Destroy(AccountInfoComponent self)
- {
- self.Token = string.Empty;
- self.AccountId = 0;
- }
- }
- public class AccountInfoComponentSystem
- {
- }
- }
|