ScenePointConfig.java 298 Bytes
Newer Older
Yazawazi's avatar
Yazawazi committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
    }
}