bitsy-parser

Rust Crates.io

a library for parsing Bitsy game data.

the version number follows Bitsy itself, so version 0.70.* targets Bitsy 7.0.

how to use

a simple example program:

```rust extern crate bitsyparser; use bitsyparser::game::Game; use std::{env, fs};

fn main() { let input_file = env::args() .nth(1) .expect("No input path specified. Usage: bitsy-validate filepath");

Game::from(fs::read_to_string(input_file).unwrap()).unwrap();

println!("OK!");

} ```

some more practical uses would be things like:

todo

tidy up