tools/rc/to_f64.rs
author unC0Rr
Wed, 15 May 2024 10:05:13 +0200
changeset 16042 2e529b1a9d5b
parent 15981 5aed6c0b63e2
permissions -rw-r--r--
Wonder if anyone is trying to build this game anymore

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