VirtualGRF

Holds information about multiple GRF. Use this struct if you wish to open multiple GRF files but retain a single GRF. Essentially merging the two GRF files.

Constructors

this
this(string[] filenames)

See GRF

Members

Variables

files
GRFFiletable files;

The merged filetable from the GRFs

grfs
GRF[] grfs;

The GRFs in this VirtualGRF

Examples

import zgrf.types;

// rdata.grf is loaded first and any files that are not in rdata.grf
// are loaded from data.grf
VirtualGRF grf = VirtualGRF(["rdata.grf", "data.grf"]);

Meta