mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-02-02 19:51:45 +00:00
12 lines
215 B
Java
12 lines
215 B
Java
package objtomap;
|
|
|
|
public class AutoTexturingEntry {
|
|
public double angle;
|
|
public String texturename;
|
|
|
|
public AutoTexturingEntry() {
|
|
angle = 0.0;
|
|
texturename = "common/caulk";
|
|
}
|
|
}
|