mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-14 05:32:33 +08:00
25 lines
500 B
Java
25 lines
500 B
Java
package emu.grasscutter.data.common;
|
|
|
|
import java.util.List;
|
|
|
|
public class OpenCondData {
|
|
private String condType;
|
|
private List<Integer> paramList;
|
|
|
|
public String getCondType() {
|
|
return condType;
|
|
}
|
|
|
|
public void setCondType(String condType) {
|
|
condType = condType;
|
|
}
|
|
|
|
public List<Integer> getParamList() {
|
|
return paramList;
|
|
}
|
|
|
|
public void setParamList(List<Integer> paramList) {
|
|
paramList = paramList;
|
|
}
|
|
}
|