mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-02-09 06:56:51 +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";
|
||
|
}
|
||
|
}
|