Select Git revision

Evy Storozhenko authored
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,
}