summaryrefslogtreecommitdiff
path: root/NW4RTools/ResFile.cs
blob: 02919e5ee3527f69a8c4725dabd177e1a00e9893 (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>;
		}
	}
}