PkmnLib_rs/src/lib.rs

11 lines
265 B
Rust
Raw Normal View History

// The too many arguments is annoying, especially for when we create constructors, disable.
#![allow(clippy::too_many_arguments, clippy::needless_range_loop)]
#![feature(nll)]
#[macro_use]
extern crate maplit;
pub mod defines;
pub mod static_data;
pub mod utils;