Skip to main content

manasight_parser/parsers/draft/
mod.rs

1//! Draft event parsers: bot draft picks, human draft picks, and draft completion.
2//!
3//! Each sub-module handles one draft event category:
4//!
5//! | Module | Log Signatures | Event Type |
6//! |--------|---------------|------------|
7//! | [`bot`] | `BotDraftDraftStatus`, `BotDraftDraftPick` | [`DraftBotEvent`](crate::events::DraftBotEvent) |
8//! | [`human`] | `Draft.Notify`, `EventPlayerDraftMakePick` | [`DraftHumanEvent`](crate::events::DraftHumanEvent) |
9//! | [`complete`] | `DraftCompleteDraft` | [`DraftCompleteEvent`](crate::events::DraftCompleteEvent) |
10
11pub mod bot;
12pub mod complete;
13pub mod human;