//! Stats panel widget trait definition
//!
//! Displays character/entity statistics (HP, Attack, Defense, etc.)
use Widget;
/// Stats panel interface
///
/// Displays character/entity statistics (HP, Attack, Defense, etc.)
/// Backend implementations should implement this trait.
///
/// Note: `new()`, `add_stat_with_max()`, and `add_stat()` are builder methods
/// and should be implemented as associated functions/methods on the concrete type,
/// not as trait methods.