summaryrefslogtreecommitdiff
path: root/Thronefall/I2.Loc/ILocalizeTargetDescriptor.cs
blob: 0b807cdb6c3e4052ab380f44cafa2cca735e1f2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

namespace I2.Loc;

public abstract class ILocalizeTargetDescriptor
{
	public string Name;

	public int Priority;

	public abstract bool CanLocalize(Localize cmp);

	public abstract ILocalizeTarget CreateTarget(Localize cmp);

	public abstract Type GetTargetType();
}