Normand Briere
2019-08-06 b3ae4e889872ca0b9ca76f1d17b2f0b961226729
cTexture.java
....@@ -1,12 +1,5 @@
1
-/*
2
- * To change this template, choose Tools | Templates
3
- * and open the template in the editor.
4
- */
1
+import java.awt.image.BufferedImage;
52
6
-/**
7
- *
8
- * @author nbriere
9
- */
103 public class cTexture implements java.io.Serializable
114 {
125 static final long serialVersionUID = 8278178842384985286L;
....@@ -38,6 +31,10 @@
3831 }
3932
4033 String name;
41
- byte[] pigmentstream;
42
- byte[] bumpstream;
34
+
35
+ int pw, ph;
36
+ byte[] pigmentdata;
37
+
38
+ int bw, bh;
39
+ byte[] bumpdata;
4340 }