mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-20 23:41:04 +08:00
Add events to support scene group substitution (#2413)
* Add events to support scene group substitution * make event members private with getter/setter * delete stray unused var
This commit is contained in:
committed by
GitHub
Unverified
parent
269f7b4fbf
commit
cf6fb275be
@@ -5,6 +5,13 @@ import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class GroupReplacementData {
|
||||
int id;
|
||||
List<Integer> replace_groups;
|
||||
public int id;
|
||||
public List<Integer> replace_groups;
|
||||
|
||||
public GroupReplacementData() {}
|
||||
|
||||
public GroupReplacementData(int id, List<Integer> replace_groups) {
|
||||
this.id = id;
|
||||
this.replace_groups = replace_groups;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user