wasm2glulx_ffi/lib.rs
1// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
2// Copyright 2024 Daniel Fox Franke.
3#![no_std]
4//! This crate provides low-level bindings to the system API available to games
5//! when they are compiled for the Glulx virtual machine by way of
6//! [Wasm2Glulx](https://docs.rs/wasm2glulx). This crate is part of the
7//! [Bedquilt project](https://bedquilt.io).
8
9pub mod glk;
10pub mod glulx;