Fix Fuel's field visibility, add it to the cutter

*Now* the fuel change events will work (and compile).
This commit is contained in:
2025-08-28 15:35:46 -05:00
parent ed2e1e75ef
commit f470687494
3 changed files with 7 additions and 3 deletions

View File

@@ -33,7 +33,7 @@ pub mod consumables {
use bevy::prelude::*;
#[derive(Component)]
pub struct Fuel(u32);
pub struct Fuel(pub u32);
#[derive(Event)]
pub struct FuelChanged;