HoLib 0.1.2

Library for extracting and replacing assets in .ho archives
Documentation
1
2
3
4
pub fn round_up_to(num: usize, rounder: usize) -> usize{
    let rounder = rounder as f64;
    return ((num as f64 / rounder).ceil() * rounder) as usize;
}