strafe-project/src/lib.rs
2024-01-15 19:09:34 -08:00

20 lines
266 B
Rust

use std::io::Read;
mod file;
mod map;
mod bot;
mod demo;
pub fn read<R:Read>(input:R)->Result<crate::file::SNF,crate::file::Error>{
Err(file::Error::Header(file::HeaderError::InvalidMagic))
}
#[cfg(test)]
mod tests {
//use super::*;
#[test]
fn test() {
}
}