cTexture.java
.. .. @@ -1,12 +1,5 @@ 1 -/*2 - * To change this template, choose Tools | Templates3 - * and open the template in the editor.4 - */1 +import java.awt.image.BufferedImage;5 2 6 -/**7 - *8 - * @author nbriere9 - */10 3 public class cTexture implements java.io.Serializable 11 4 { 12 5 static final long serialVersionUID = 8278178842384985286L; .. .. @@ -38,6 +31,10 @@ 38 31 } 39 32 40 33 String name; 41 - byte[] pigmentstream;42 - byte[] bumpstream;34 +35 + int pw, ph;36 + byte[] pigmentdata;37 +38 + int bw, bh;39 + byte[] bumpdata;43 40 }