mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-24 05:34:33 +01:00
9 lines
180 B
Java
9 lines
180 B
Java
|
package com.minelittlepony.unicopia;
|
||
|
|
||
|
import java.util.Set;
|
||
|
|
||
|
public record SyncedConfig (
|
||
|
Set<String> wantItNeedItExcludeList,
|
||
|
Set<String> dimensionsWithoutAtmosphere) {
|
||
|
}
|