strafe-project/src/lib.rs

20 lines
266 B
Rust
Raw Normal View History

2024-01-16 03:09:34 +00:00
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() {
}
}