Add gameId and placeId project properties

This commit is contained in:
Lucien Greathouse
2021-04-15 14:27:35 -04:00
parent 98db3b4f08
commit c7ab6c435c
6 changed files with 34 additions and 0 deletions

View File

@@ -195,6 +195,14 @@ impl ServeSession {
self.root_project.serve_port
}
pub fn place_id(&self) -> Option<u64> {
self.root_project.place_id
}
pub fn game_id(&self) -> Option<u64> {
self.root_project.game_id
}
pub fn start_time(&self) -> Instant {
self.start_time
}