Skip to content
Snippets Groups Projects
Select Git revision
  • 7faced6aaa63fc94b6e9972a11874014540324dc
  • main default protected
  • battery
3 results

battery.rs

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    battery.rs 161 B
    use crate::power::{Capacity, Source};
    
    use bevy::prelude::*;
    
    #[derive(Bundle)]
    pub struct BatteryBundle {
        pub source: Source,
        pub capacity: Capacity,
    }