SceneGroup.java 693 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 SceneGroup {
8
9
	public transient int block_id; // Not an actual variable in the scripts but we will keep it here for reference
	
10
11
12
13
14
15
16
17
18
	public int id;
	public int refresh_id;
	public Position pos;
	
	public List<SceneMonster> monsters;
	public List<SceneGadget> gadgets;
	public List<SceneTrigger> triggers;
	public List<SceneSuite> suites;
	public SceneInitConfig init_config;
19
20
21
22
23
24
25
26
27
28
	
	private transient boolean isLoaded; // Not an actual variable in the scripts either

	public boolean isLoaded() {
		return isLoaded;
	}
	
	public boolean setLoaded(boolean loaded) {
		return loaded;
	}
29
}