mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-27 01:33:16 +00:00
Add alternate name for tranSceneId, and fix inconsistent indentation.
This commit is contained in:
parent
7126b1569e
commit
52e9c05440
@ -12,30 +12,32 @@ import it.unimi.dsi.fastutil.ints.IntList;
|
|||||||
public class PointData {
|
public class PointData {
|
||||||
private int id;
|
private int id;
|
||||||
private String $type;
|
private String $type;
|
||||||
private Position tranPos;
|
private Position tranPos;
|
||||||
|
|
||||||
@SerializedName(value="dungeonIds", alternate={"JHHFPGJNMIN"})
|
|
||||||
private int[] dungeonIds;
|
|
||||||
|
|
||||||
@SerializedName(value="dungeonRandomList", alternate={"OIBKFJNBLHO"})
|
|
||||||
private int[] dungeonRandomList;
|
|
||||||
|
|
||||||
|
@SerializedName(value="dungeonIds", alternate={"JHHFPGJNMIN"})
|
||||||
|
private int[] dungeonIds;
|
||||||
|
|
||||||
|
@SerializedName(value="dungeonRandomList", alternate={"OIBKFJNBLHO"})
|
||||||
|
private int[] dungeonRandomList;
|
||||||
|
|
||||||
|
@SerializedName(value="tranSceneId", alternate={"JHBICGBAPIH"})
|
||||||
private int tranSceneId;
|
private int tranSceneId;
|
||||||
public int getId() {
|
|
||||||
|
public int getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setId(int id) {
|
public void setId(int id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getType() {
|
public String getType() {
|
||||||
return $type;
|
return $type;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Position getTranPos() {
|
public Position getTranPos() {
|
||||||
return tranPos;
|
return tranPos;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int[] getDungeonIds() {
|
public int[] getDungeonIds() {
|
||||||
return dungeonIds;
|
return dungeonIds;
|
||||||
|
Loading…
Reference in New Issue
Block a user