]> icculus.org git repositories - divverent/nexuiz.git/blob - tools/ObjToMap/objtomap/AutoTexturingEntry.java
more stuff to this :P
[divverent/nexuiz.git] / tools / ObjToMap / objtomap / AutoTexturingEntry.java
1 package objtomap;
2
3 public class AutoTexturingEntry {
4     public double angle;
5     public String texturename;
6     
7     public AutoTexturingEntry() {
8         angle = 0.0;
9         texturename = "common/caulk";
10     }
11 }