xplm 0.4.2

High-level interfaces to the X-Plane plugin SDK
Documentation
1
2
3
4
5
6
7
8
9
use super::feature;

/// Enables native paths
pub fn path_init() {
    // Feature specified to exist in SDK 2.1
    let native_path_feature =
        feature::find_feature("XPLM_USE_NATIVE_PATHS").expect("No native paths feature");
    native_path_feature.set_enabled(true);
}