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,6 @@ 38 31 } 39 32 40 33 String name; 41 - byte[] pigmentstream;42 - byte[] bumpstream;34 + BufferedImage pigmenttexture;35 + BufferedImage bumptexture;43 36 }