1
0
Fork 0
mirror of https://codeberg.org/icewind/vbsp.git synced 2026-06-04 11:04:07 +02:00

add pakfile support

This commit is contained in:
Robin Appelman 2022-03-20 15:31:40 +01:00
commit dbce06b508
5 changed files with 70 additions and 1 deletions

View file

@ -1,6 +1,7 @@
use crate::data::*;
use std::num::{ParseFloatError, ParseIntError};
use thiserror::Error;
use zip::result::ZipError;
#[non_exhaustive]
#[derive(Debug, Error)]
@ -34,6 +35,8 @@ pub enum BspError {
Validation(#[from] ValidationError),
#[error(transparent)]
LumpVersion(UnsupportedLumpVersion),
#[error(transparent)]
Zip(#[from] ZipError),
}
impl From<binrw::Error> for BspError {