//! Core animation types and state machine implementation
//!
//! This module provides the fundamental building blocks for the animation system:
//! - State management for animations
//! - Easing functions
//! - Property tweening
//! - Animation engine with global tween management
pub use EasingFunction;
pub use AnimationEngine;
pub use ;
pub use Tween;
pub use ;