TranslationJob_WWW.cs 253 B

12345678910111213141516171819
  1. using System;
  2. using UnityEngine;
  3. namespace I2.Loc
  4. {
  5. public class TranslationJob_WWW : TranslationJob
  6. {
  7. public override void Dispose()
  8. {
  9. if (this.www != null)
  10. {
  11. this.www.Dispose();
  12. }
  13. this.www = null;
  14. }
  15. public WWW www;
  16. }
  17. }