26 lines
610 B
C#
26 lines
610 B
C#
using AC2RE.Definitions;
|
|
using ImageMagick;
|
|
using LandblockExtraction.DatEngine;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Numerics;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LandblockExtraction.AtlasMaker;
|
|
public class AtlasBuilder {
|
|
private readonly int TEXTURESIZE = 64;
|
|
|
|
private TexturesImage texturesImage;
|
|
private List<MagickImage> textures;
|
|
|
|
public AtlasBuilder(PortalEngine portalEngine) {
|
|
textures = new();
|
|
texturesImage = new TexturesImage(portalEngine);
|
|
}
|
|
|
|
public AddTexture(DataId vdesc) {
|
|
|
|
}
|
|
}
|