infinity-rs 0.2.4

Safe, idiomatic Rust bindings for the MSFS 2024 WASM SDK.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::sys::*;

pub struct Fs2024;

pub trait Abi {
    type Context;
    type SystemInstall;
    type GaugeInstall;
    type GaugeDraw;
}

impl Abi for Fs2024 {
    type Context = FsContext;
    type SystemInstall = sSystemInstallData;
    type GaugeInstall = sGaugeInstallData;
    type GaugeDraw = sGaugeDrawData;
}