fish-lib 0.2.3

A work-in-progress fishing game library containing the game/storage logic for a discord fishing game I'm working on.
Documentation
1
2
3
pub fn float_interpolate(a: f32, b: f32, factor: f32) -> f32 {
    a + ((b - a) * factor)
}