rustbatch 0.4.0

purely game dewelopment crate that offers simple but powerfull 2D rendering and some fast solutions for game world bottle necks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod predict;
pub mod pathfinder;
pub mod storage;
pub mod timer;
pub mod detection;

use std::hash::BuildHasherDefault;
use hashers::fnv::FNV1aHasher32;
pub type FastHash = BuildHasherDefault<FNV1aHasher32>;

pub fn gen_hash() -> FastHash {
    BuildHasherDefault::<FNV1aHasher32>::default()
}