lightyear_inputs_bei 0.29.0

Adds integration to network inputs from the bevy_enhanced_input crate for the lightyear networking library
Documentation
//! # Lightyear Inputs BEI
//!
//! This crate provides an integration between `lightyear` and `bevy-enhanced-input`.
#![no_std]

extern crate alloc;
extern crate core;
#[cfg(feature = "std")]
extern crate std;

pub mod input_message;

#[cfg(feature = "client")]
mod disable;
mod marker;
mod plugin;
mod setup;

pub mod prelude {
    pub use crate::input_message::{BEIBuffer, BEIStateSequence};
    pub use crate::marker::InputMarker;
    pub use crate::plugin::InputPlugin;
    pub use crate::setup::InputRegistryExt;
    pub use bevy_enhanced_input::prelude::*;
}