1
2
3
4
5
6
7
8
use std::os::raw::c_float;

#[repr(C, packed)]
#[derive(Clone, Copy, Debug, PartialEq)]
pub struct AiVector2D {
    pub x: c_float,
    pub y: c_float,
}