- FileWatcher: mtime-based polling change detection - AssetLoader: background thread loading via channels - replace_in_place on AssetStorage for hot reload - LoadState enum: Loading/Ready/Failed Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
234 B
Rust
12 lines
234 B
Rust
pub mod handle;
|
|
pub mod storage;
|
|
pub mod assets;
|
|
pub mod watcher;
|
|
pub mod loader;
|
|
|
|
pub use handle::Handle;
|
|
pub use storage::AssetStorage;
|
|
pub use assets::Assets;
|
|
pub use watcher::FileWatcher;
|
|
pub use loader::{AssetLoader, LoadState};
|