AccountInfoComponentSystem.cs 489 B

1234567891011121314151617181920
  1. namespace ET
  2. {
  3. public class AccountInfoComponentDestroySystem : DestroySystem<AccountInfoComponent>
  4. {
  5. public override void Destroy(AccountInfoComponent self)
  6. {
  7. self.Token = string.Empty;
  8. self.AccountId = 0;
  9. self.RealmKey = string.Empty;
  10. self.RealmAddress = string.Empty;
  11. self.Age = 0;
  12. self.Account = string.Empty;
  13. }
  14. }
  15. public class AccountInfoComponentSystem
  16. {
  17. }
  18. }