blob: 1638287ab6f9486b89021df9460cc6e636a96aaa [file] [log] [blame]
/* automatically generated by rust-bindgen */
#![allow(non_snake_case)]
#[repr(C)]
#[derive(Debug, Copy, Clone)]
pub struct Point<T> {
pub x: T,
pub y: T,
}
impl <T> Default for Point<T> {
fn default() -> Self { unsafe { ::std::mem::zeroed() } }
}
pub type IntPoint2D = Point<::std::os::raw::c_int>;
pub type IntVec2D = Point<::std::os::raw::c_int>;