summaryrefslogtreecommitdiff
path: root/NW4RTools/ResFile.cs
blob: 865db935c2fe5a97b84200a45745f15e471a169e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace NW4RTools {
	public class ResFile : ResDict<object> {
		public UInt16 version;

		public ResDict<TValue> GetGroup<TValue>(string name) {
			return this[name] as ResDict<TValue>;
		}
	}
}