10 lines
219 B
C#
10 lines
219 B
C#
using AC2RE.Definitions;
|
|
|
|
namespace LandblockExtraction.DatEngine;
|
|
public class DatEngine {
|
|
public DatReader datReader;
|
|
|
|
public DatEngine(string pathDat) {
|
|
datReader = new DatReader(pathDat);
|
|
}
|
|
}
|