usecrate::thrust::Deck;// Game settings specific to player
// Calling new() will easily reset settings on new game or join
#[derive(Clone, Debug)]pubstructPlayerGame{pubdeck: Deck,
pubpoints:u8,
}implPlayerGame{pubfnnew()-> PlayerGame{
PlayerGame {
deck:Deck::new(),
points:0,}}}