AccountInfoComponentSystem.cs 334 B

12345678910111213141516
  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. }
  10. }
  11. public class AccountInfoComponentSystem
  12. {
  13. }
  14. }