Refactor instrument cluster components into individual modules for improved maintainability and reusability.

This commit is contained in:
geoffsee
2025-07-02 09:41:28 -04:00
parent 2357112ee0
commit f5de8e943b
13 changed files with 112 additions and 62 deletions

View File

@@ -0,0 +1,5 @@
use bevy::prelude::*;
/// Depth gauge component for displaying water depth
#[derive(Component)]
pub struct DepthGauge;