SceneSuite.java 273 Bytes
Newer Older
1
2
3
4
5
6
7
package emu.grasscutter.scripts.data;

import java.util.List;

import emu.grasscutter.utils.Position;

public class SceneSuite {
Melledy's avatar
Melledy committed
8
	public List<Integer> monsters;
9
10
	public List<String> triggers;
	public int rand_weight;
Melledy's avatar
Melledy committed
11
12
	
	public transient List<SceneMonster> sceneMonsters;
13
}