summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/I2.Loc/TranslationJob_WWW.cs
blob: f10586e656304cd6e1810f826976228cc53dea2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using UnityEngine.Networking;

namespace I2.Loc;

public class TranslationJob_WWW : TranslationJob
{
	public UnityWebRequest www;

	public override void Dispose()
	{
		if (www != null)
		{
			www.Dispose();
		}
		www = null;
	}
}