1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* automatically generated by rust-bindgen */ #![allow(non_snake_case)] #[repr(C)] #[derive(Debug, Copy, Clone)] pub struct Struct_Point<T> { pub x: T, pub y: T, } pub type IntPoint2D = Struct_Point<::std::os::raw::c_int>; pub type IntVec2D = Struct_Point<::std::os::raw::c_int>;