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

update benches

This commit is contained in:
Robin Appelman 2020-06-26 20:30:04 +02:00
commit 1fd2f3800a
3 changed files with 13 additions and 12 deletions

View file

@ -218,9 +218,9 @@ impl BinRead for Name {
#[derive(Debug, Clone, BinRead)]
pub struct Vector {
x: f32,
y: f32,
z: f32,
pub x: f32,
pub y: f32,
pub z: f32,
}
impl Vector {

View file

@ -3,6 +3,7 @@ mod data;
mod reader;
use crate::bspfile::LumpType;
pub use crate::data::Vector;
use crate::data::*;
use binread::io::Cursor;
use binread::BinRead;