.. | .. |
---|
1 | | -/* |
---|
2 | | - * To change this template, choose Tools | Templates |
---|
3 | | - * and open the template in the editor. |
---|
4 | | - */ |
---|
| 1 | +import java.awt.image.BufferedImage; |
---|
5 | 2 | |
---|
6 | | -/** |
---|
7 | | - * |
---|
8 | | - * @author nbriere |
---|
9 | | - */ |
---|
10 | 3 | public class cTexture implements java.io.Serializable |
---|
11 | 4 | { |
---|
| 5 | + static final long serialVersionUID = 8278178842384985286L; |
---|
| 6 | + |
---|
12 | 7 | public cTexture(String n) |
---|
13 | 8 | { |
---|
14 | 9 | name = n; |
---|
.. | .. |
---|
35 | 30 | return toString().equals(o.toString()); |
---|
36 | 31 | } |
---|
37 | 32 | |
---|
38 | | - public String name; |
---|
| 33 | + String name; |
---|
| 34 | + |
---|
| 35 | + transient String pigment; |
---|
| 36 | + transient String bump; |
---|
| 37 | + |
---|
| 38 | + int pw, ph; |
---|
| 39 | + byte[] pigmentdata; |
---|
| 40 | + |
---|
| 41 | + int bw, bh; |
---|
| 42 | + byte[] bumpdata; |
---|
39 | 43 | } |
---|