unity_native 0.3.0

A Rustified wrapper around the Unity Native Plugin API
Documentation
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! unity_api_guid {
    ($high:literal $low:literal) => {
        $crate::ffi::UnityInterfaceGUID {
            m_GUIDHigh: $high,
            m_GUIDLow: $low,
        }
    };
}