wormhole-engine 0.1.0

A portable, no-editor game engine with Rust core and Crystal scripting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Wormhole Engine Library
// Exports modules and FFI functions for use by Crystal scripts

pub mod window;
pub mod renderer;
pub mod timer;
pub mod script_host;
pub mod ffi_bridge;
pub mod input;
pub mod camera;
pub mod texture;

// Re-export FFI functions
pub use ffi_bridge::*;