//! Environment wrappers for modular behavior transformation.
//!
//! Wrappers modify an environment's behavior without altering its underlying
//! code. They can transform observations, actions, rewards, or add bookkeeping
//! such as time limits and episode statistics.
//!
//! Mirrors [Gymnasium wrappers](https://gymnasium.farama.org/api/wrappers/)
//! adapted to Rust's generic type system for zero-cost composition.
pub use ClipAction;
pub use NormalizeObservation;
pub use NormalizeReward;
pub use RecordEpisodeStatistics;
pub use TimeLimit;