2021-11-01 14:46:45 -04:00
|
|
|
pub struct GameLog {
|
|
|
|
pub entries: Vec<String>,
|
|
|
|
}
|
2021-11-05 14:32:14 -04:00
|
|
|
|
|
|
|
impl GameLog {
|
|
|
|
pub fn new<S: ToString>(first_entry: S) -> Self {
|
|
|
|
let mut entries: Vec<String> = Vec::new();
|
|
|
|
entries.push(first_entry.to_string());
|
|
|
|
|
|
|
|
GameLog { entries }
|
|
|
|
}
|
|
|
|
}
|