goud-engine 0.0.828

GoudEngine — build 2D and 3D games in Rust with zero FFI overhead
Documentation
1
2
3
4
5
6
7
8
9
10
//! GoudEngine Rust SDK
//!
//! This crate re-exports the internal `goud_engine::sdk` module directly.
//! Unlike C#, Python, and TypeScript SDKs which call through the C FFI boundary,
//! the Rust SDK links directly against the engine for zero overhead.
//!
//! This is a documented exception to the FFI-only rule -- Rust calling Rust
//! through C-ABI FFI adds mutex locks and context lookups for zero benefit.

pub use goud_engine::sdk::*;