tools/rc/to_f64.rs
author unC0Rr
Mon, 13 Jan 2025 11:39:58 +0100
changeset 16066 b68e513d1416
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Make bots wait a bit if there are air mines moving

pub fn to_f64<T: Into<f64>>(v: T) -> f64 {
    v.into()
}