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 d0b1f445fd
commit d77fbadab7
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;
}