wormhole/
lib.rs

1// Wormhole Engine Library
2// Exports modules and FFI functions for use by Crystal scripts
3
4pub mod window;
5pub mod renderer;
6pub mod timer;
7pub mod script_host;
8pub mod ffi_bridge;
9pub mod input;
10pub mod camera;
11pub mod texture;
12
13// Re-export FFI functions
14pub use ffi_bridge::*;