summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/I2.Loc/TranslationJob.cs
blob: a93545d0e3c4066d07de0a288e072bbb945a3123 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;

namespace I2.Loc;

public class TranslationJob : IDisposable
{
	public enum eJobState
	{
		Running,
		Succeeded,
		Failed
	}

	public eJobState mJobState;

	public virtual eJobState GetState()
	{
		return mJobState;
	}

	public virtual void Dispose()
	{
	}
}