mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-19 10:24:47 +01:00
Only a few are supported right now You will need certain script files in ./resources/Scripts
8 lines
187 B
Java
8 lines
187 B
Java
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;
|
|
}
|