Appends a single game to the factory.
(&self, game: GameAtIndex)
| 145 | |
| 146 | /// Appends a single game to the factory. |
| 147 | pub fn push(&self, game: GameAtIndex) { |
| 148 | self.games.lock().unwrap().push(game); |
| 149 | } |
| 150 | |
| 151 | /// Inserts a UUID-addressable game. |
| 152 | pub fn insert_uuid_game( |
no test coverage detected