mirror of
https://codeberg.org/icewind/vmdl.git
synced 2026-06-03 16:44:11 +02:00
basic vvd
This commit is contained in:
parent
b0d3245e07
commit
fc98416aa3
5 changed files with 137 additions and 17 deletions
|
|
@ -1,6 +1,7 @@
|
|||
use std::fs::read;
|
||||
use vmdl::mdl::Mdl;
|
||||
use vmdl::vtx::Vtx;
|
||||
use vmdl::vvd::Vvd;
|
||||
|
||||
#[test]
|
||||
fn parse_mdl() {
|
||||
|
|
@ -13,3 +14,9 @@ fn parse_vtx() {
|
|||
let data = read("data/barrel01.dx90.vtx").unwrap();
|
||||
Vtx::read(&data).unwrap();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn parse_vvd() {
|
||||
let data = read("data/barrel01.vvd").unwrap();
|
||||
Vvd::read(&data).unwrap();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue