summaryrefslogtreecommitdiff
path: root/Thronefall_1_57/Decompile/I2.Loc/ArabicMapping.cs
blob: 70b399e4e5571cc07253c0dfd90a64fbdcfa853c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace I2.Loc;

internal class ArabicMapping
{
	public int from;

	public int to;

	public ArabicMapping(int from, int to)
	{
		this.from = from;
		this.to = to;
	}
}