map3drendering/LandblockExtraction/DatEngine/DatEngine.cs
Troispoils 18203c539f DatReader class heritage
Start Atlas maker class for generate atlas texture
2024-02-26 17:06:03 +01:00

15 lines
335 B
C#

using AC2RE.Definitions;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LandblockExtraction.DatEngine;
public class DatEngine {
public DatReader datReader;
public DatEngine(string pathDat) {
datReader = new DatReader(pathDat);
}
}