tools/rc/to_f64.rs
author unC0Rr
Sun, 01 Dec 2024 21:08:03 +0100 (2 days ago)
branchtransitional_engine
changeset 16073 5c941f5deeec
parent 15981 5aed6c0b63e2
permissions -rw-r--r--
* Introduce concept of invizible walls to constrain outline map generation * Rework some templates to work better with new parameters in rust landgen
pub fn to_f64<T: Into<f64>>(v: T) -> f64 {
    v.into()
}