mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-01-12 13:33:21 +08:00
16 lines
298 B
Java
16 lines
298 B
Java
|
package emu.grasscutter.data.common;
|
||
|
|
||
|
import com.google.gson.JsonObject;
|
||
|
|
||
|
public class ScenePointConfig {
|
||
|
public JsonObject points;
|
||
|
|
||
|
public JsonObject getPoints() {
|
||
|
return points;
|
||
|
}
|
||
|
|
||
|
public void setPoints(JsonObject Points) {
|
||
|
points = Points;
|
||
|
}
|
||
|
}
|