Skip to main content

extendable_assets/
lib.rs

1//! # Extendable Assets
2//!
3//! An asset framework for graphics and games that provides flexible asset management,
4//! loading, and saving capabilities.
5
6mod asset;
7mod asset_type;
8mod filesystem;
9mod loader;
10mod manager;
11mod saver;
12mod util;
13
14/// Third-party re-exports for external crates used by this library.
15pub mod third_party;
16
17pub use asset::*;
18pub use asset_type::*;
19pub use filesystem::*;
20pub use loader::*;
21pub use manager::*;
22pub use saver::*;