mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-22 06:35:16 +08:00
8 lines
147 B
Rust
8 lines
147 B
Rust
//! 解析器模块占位
|
|
|
|
/// AssetBundle 解析器接口(待实现)
|
|
pub trait Parser {
|
|
/// 解析器名称
|
|
fn name(&self) -> &str;
|
|
}
|