summaryrefslogtreecommitdiff
path: root/src/session.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/session.rs')
-rw-r--r--src/session.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/session.rs b/src/session.rs
index 06ec483..6aeee9f 100644
--- a/src/session.rs
+++ b/src/session.rs
@@ -3,7 +3,6 @@ use std::collections::HashMap;
pub struct Session {
pub steam_name: String,
- pub passcode: String,
pub hands: HashMap<String, Vec<HandObject>>,
}
@@ -40,10 +39,9 @@ pub struct CustomDeck {
}
impl Session {
- pub fn new(steam_name: String, passcode: String) -> Self {
+ pub fn new(steam_name: String) -> Self {
Session {
steam_name,
- passcode,
hands: HashMap::new(),
}
}