8 lines
113 B
Rust
8 lines
113 B
Rust
|
use crate::models::hand::Hand;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
pub struct Player {
|
||
|
pub name: String,
|
||
|
pub hand: Hand,
|
||
|
}
|