Skip to main content

steel_utils/codec/
mod.rs

1//! This module contains various codecs for reading and writing data.
2/// A module for a bit set.
3pub mod bit_set;
4/// A module for codec impl for glam crate.
5pub mod glam;
6/// A module for vanilla `LpVec3` packed vector encoding.
7pub mod lp_vec3;
8/// A module for an Or type that can be one of two types.
9pub mod or;
10mod variable_integer;
11
12pub use bit_set::BitSet;
13pub use lp_vec3::LpVec3;
14pub use or::Or;
15pub use variable_integer::{VarInt, VarLong, VarUint};