FileInputStream fis = new FileInputStream("texidx.mul");
TexIdx[] idxData = null;
TexIdxReader idxReader = new TexIdxReader(fis);
idxData = idxReader.readAll();
idxReader.close();
File texMapsFile = new File("texmaps.mul");
TexMapsReader texReader = new TexMapsReader(texMapsFile);
this.texture = texReader.read(idxData[200]);
if (this.texture == null) {