]> icculus.org git repositories - divverent/nexuiz.git/blob - tools/ObjToMap/objtomap/AutoTexturingEntry.java
hlac fix: proper size for textures, smaller scope, reposition of 1st person view
[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 }