tools/rc/to_f64.rs
author Wuzzy <Wuzzy@disroot.org>
Wed, 28 Jun 2023 17:06:22 +0200
changeset 15966 605697b8947a
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
CS: Remove hog switch arrows on continent phase if switching gameflag is used

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