1234567891011121314151617181920 |
- namespace ET
- {
- public class AccountInfoComponentDestroySystem : DestroySystem<AccountInfoComponent>
- {
- 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
- {
- }
- }
|