ScriptRegionShape.java 264 Bytes
Newer Older
1
2
3
4
5
6
package emu.grasscutter.scripts.constants;

public class ScriptRegionShape {
	public static final int NONE = 0;
	public static final int SPHERE = 1;
	public static final int CUBIC = 2;
14eyes's avatar
14eyes committed
7
8
	public static final int CYLINDER = 3;
	public static final int POLYGON = 4;
9
}