| #![allow(clippy::derivable_impls, clippy::all)] |
| extern crate flatbuffers; |
| |
| #[allow(dead_code, unused_imports)] |
| #[path = "../../include_test1/mod.rs"] |
| pub mod include_test1_generated; |
| |
| #[allow(dead_code, unused_imports)] |
| #[path = "../../include_test2/mod.rs"] |
| pub mod include_test2_generated; |
| |
| #[allow(dead_code, unused_imports, clippy::approx_constant)] |
| #[path = "../../monster_test/mod.rs"] |
| mod monster_test_generated; |
| pub use monster_test_generated::my_game; |
| |
| use std::io::Read; |
| |
| fn main() { |
| let mut f = std::fs::File::open("../monsterdata_test.mon").unwrap(); |
| let mut buf = Vec::new(); |
| f.read_to_end(&mut buf).expect("file reading failed"); |
| |
| let monster = my_game::example::root_as_monster(&buf[..]).unwrap(); |
| println!("{}", monster.hp()); // `80` |
| println!("{}", monster.mana()); // default value of `150` |
| println!("{:?}", monster.name()); // Some("MyMonster") |
| } |