tools/rc/to_f64.rs
author unC0Rr
Wed, 01 May 2024 16:49:16 +0200
changeset 16012 caba603f461f
parent 15951 5aed6c0b63e2
permissions -rw-r--r--
Allow to move camera by dragging mouse cursor over game field

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