//! hokusai-core — Pure Rust brush engine inspired by libmypaint.
//!
//! This crate provides:
//! - Brush settings / inputs / mapping types ([`setting`], [`input`])
//! - The [`Brush`] value type and per-stroke [`BrushState`]
//! - Fixed-point pixel math compatible with libmypaint ([`fix15`])
//! - The [`TiledSurface`] abstraction and default `draw_dab` / `get_color`
//!
//! Surface backends and `.myb` JSON parsing live in sibling crates.
pub use Brush;
pub use ;
pub use ;
pub use ;
pub use BrushState;
pub use ;
pub use ;