| 157 | const DATADIR: &str = "data"; |
| 158 | |
| 159 | pub struct Cache { |
| 160 | pics: Vec<Picture>, |
| 161 | textures: Vec<Vec<u8>>, |
| 162 | sprites: Vec<(CompShape, Vec<u8>)>, |
| 163 | sounds: Vec<Vec<u8>>, |
| 164 | maps: Vec<Map>, |
| 165 | } |
| 166 | |
| 167 | impl Cache { |
| 168 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected