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