mirror of
https://github.com/XevianLight/Aphelion.git
synced 2026-05-11 01:50:56 +01:00
13 lines
233 B
Java
13 lines
233 B
Java
package net.xevianlight.aphelion.client.dimension;
|
|
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.phys.Vec3;
|
|
|
|
public record OrbitSkyDefinition(
|
|
ResourceLocation id,
|
|
Vec3 skyColor
|
|
|
|
) {
|
|
|
|
}
|