(autoformat)
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
use bevy::prelude::*;
|
||||
|
||||
/// Data component for info about the player's current set of cards.
|
||||
@@ -7,9 +6,9 @@ use bevy::prelude::*;
|
||||
///
|
||||
/// [`Self::low_water_mark`] is the threshold for drawing new cards on-room-enter.
|
||||
#[derive(Component)]
|
||||
pub struct PlayerHand{
|
||||
pub struct PlayerHand {
|
||||
cards: Vec<Entity>,
|
||||
capacity: u8,
|
||||
capacity: u8,
|
||||
low_water_mark: u8,
|
||||
}
|
||||
|
||||
@@ -35,4 +34,4 @@ pub mod consumables {
|
||||
|
||||
#[derive(Component)]
|
||||
pub struct Fuel(u32);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user