Normand Briere
2019-08-06 b3ae4e889872ca0b9ca76f1d17b2f0b961226729
cTexture.java
....@@ -1,14 +1,9 @@
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 {
5
+ static final long serialVersionUID = 8278178842384985286L;
6
+
127 public cTexture(String n)
138 {
149 name = n;
....@@ -35,5 +30,11 @@
3530 return toString().equals(o.toString());
3631 }
3732
38
- public String name;
33
+ String name;
34
+
35
+ int pw, ph;
36
+ byte[] pigmentdata;
37
+
38
+ int bw, bh;
39
+ byte[] bumpdata;
3940 }