Skip to main content

luaur_analysis/methods/
normalizer_clear_fuel.rs

1use crate::records::normalizer::Normalizer;
2
3impl Normalizer {
4    pub fn clear_fuel(&mut self) {
5        self.fuel = None;
6    }
7}