minecraft-kartverket/map-markers/lib.nix

12 lines
211 B
Nix
Raw Permalink Normal View History

2024-09-02 13:47:45 +02:00
rec {
mkPoi = label: pos: attr: {
type = "poi";
position = {
x = builtins.elemAt pos 0;
y = builtins.elemAt pos 2;
z = builtins.elemAt pos 1;
};
label = label;
} // attr;
}