wasm4fun_input/
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//! Input primitives and subsystems for WASM-4 fantasy console
10
11#![no_std]
12
13mod gamepad;
14pub use gamepad::GamePad;
15
16mod mouse;
17pub use mouse::Mouse;