mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-21 00:00:00 +08:00
c1e69ce343
Only a few are supported right now You will need certain script files in ./resources/Scripts
13 lines
236 B
Java
13 lines
236 B
Java
package emu.grasscutter.scripts.data;
|
|
|
|
import emu.grasscutter.utils.Position;
|
|
|
|
public class SceneGadget {
|
|
public int level;
|
|
public int config_id;
|
|
public int gadget_id;
|
|
public int state;
|
|
public Position pos;
|
|
public Position rot;
|
|
}
|