mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-12-04 19:01:29 +00:00
d71b7abfc3
Only a few are supported right now You will need certain script files in ./resources/Scripts
12 lines
219 B
Java
12 lines
219 B
Java
package emu.grasscutter.scripts.data;
|
|
|
|
import emu.grasscutter.utils.Position;
|
|
|
|
public class SceneMonster {
|
|
public int level;
|
|
public int config_id;
|
|
public int monster_id;
|
|
public Position pos;
|
|
public Position rot;
|
|
}
|