Add a few more functions for the script engine to call

This commit is contained in:
Melledy
2022-04-29 02:38:25 -07:00
parent 1a5d4cf466
commit ae3d9a4dc1
4 changed files with 53 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
package emu.grasscutter.scripts.data;
public class SceneVar {
public String name;
public int value;
public boolean no_refresh;
}