mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-19 10:24:47 +01:00
these files are NOT directly compatible with Grasscutter, and require additional modifications to the codebase to work.
13 lines
212 B
Java
13 lines
212 B
Java
package emu.grasscutter.scripts.data;
|
|
|
|
import lombok.Setter;
|
|
import lombok.ToString;
|
|
|
|
@ToString
|
|
@Setter
|
|
public class SceneReplaceable {
|
|
public boolean value;
|
|
public int version;
|
|
public boolean new_bin_only;
|
|
}
|