DatReader class heritage

Start Atlas maker class for generate atlas texture
This commit is contained in:
Troispoils 2024-02-26 17:06:03 +01:00
parent 7fb6345839
commit 18203c539f
6 changed files with 65 additions and 22 deletions

View file

@ -0,0 +1,15 @@
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);
}
}