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