mirror of
https://codeberg.org/icewind/vmdl.git
synced 2026-06-04 00:54:14 +02:00
extract loader into crate
This commit is contained in:
parent
585a485031
commit
d330108905
7 changed files with 28 additions and 135 deletions
|
|
@ -1,6 +1,6 @@
|
|||
use crate::loader::LoadError;
|
||||
use miette::Diagnostic;
|
||||
use std::string::FromUtf8Error;
|
||||
use tf_asset_loader::LoaderError;
|
||||
use thiserror::Error;
|
||||
use vmt_parser::VdfError;
|
||||
|
||||
|
|
@ -14,7 +14,7 @@ pub enum Error {
|
|||
#[error(transparent)]
|
||||
IO(#[from] std::io::Error),
|
||||
#[error(transparent)]
|
||||
Loader(#[from] LoadError),
|
||||
Loader(#[from] LoaderError),
|
||||
#[error(transparent)]
|
||||
Vtf(#[from] vtf::Error),
|
||||
#[error(transparent)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue