LocationProxyComponent.cs 271 B

123456789101112131415161718192021
  1. using System.Net;
  2. namespace ET
  3. {
  4. public class LocationProxyComponent : Entity
  5. {
  6. public static LocationProxyComponent Instance;
  7. public override void Dispose()
  8. {
  9. if (this.IsDisposed)
  10. {
  11. return;
  12. }
  13. base.Dispose();
  14. Instance = null;
  15. }
  16. }
  17. }