LocationProxyComponent.cs 338 B

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