tools/rc/to_f64.rs
author Wuzzy <Wuzzy@disroot.org>
Wed, 28 Jun 2023 18:57:00 +0200
changeset 15967 f362e82cddcf
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
CS: Disable game flags incompatible with this script

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