wasm4fun/lib.rs
1// Copyright Claudio Mattera 2022.
2//
3// Distributed under the MIT License or the Apache 2.0 License at your option.
4// See the accompanying files License-MIT.txt and License-Apache-2.0.txt, or
5// online at
6// https://opensource.org/licenses/MIT
7// https://opensource.org/licenses/Apache-2.0
8
9//! Collection of libraries for WASM-4 fantasy console
10//!
11//! This is a convenience crate that re-exports all `wasm4fun-*` crates.
12//! See the documentation of individual crates for more information.
13
14#![no_std]
15
16pub use wasm4fun_core as core;
17pub use wasm4fun_fmt as fmt;
18pub use wasm4fun_graphics as graphics;
19pub use wasm4fun_input as input;
20pub use wasm4fun_log as log;
21pub use wasm4fun_logo as logo;
22pub use wasm4fun_panichandler as panichandler;
23pub use wasm4fun_random as random;
24pub use wasm4fun_sound as sound;
25pub use wasm4fun_storage as storage;
26pub use wasm4fun_time as time;