azalea_registry/tags/
fluids.rs

1// This file was generated by codegen/lib/code/tags.py, don't edit it manually!
2
3use std::{collections::HashSet, sync::LazyLock};
4
5use crate::Fluid;
6
7pub static LAVA: LazyLock<HashSet<Fluid>> =
8    LazyLock::new(|| HashSet::from_iter(vec![Fluid::Lava, Fluid::FlowingLava]));
9pub static WATER: LazyLock<HashSet<Fluid>> =
10    LazyLock::new(|| HashSet::from_iter(vec![Fluid::Water, Fluid::FlowingWater]));