texture paths

This commit is contained in:
Robin Appelman 2023-12-09 23:28:00 +01:00
commit cd5ec8492e
8 changed files with 99 additions and 8 deletions

View file

@ -1,4 +1,4 @@
use crate::{index_range, Pod};
use crate::{index_range, Pod, ReadableRelative};
use bitflags::bitflags;
use bytemuck::Zeroable;
use std::mem::size_of;
@ -215,4 +215,6 @@ pub struct Vertex {
pub bone_id: [u8; 3],
}
impl ReadableRelative for Vertex {}
static_assertions::const_assert_eq!(size_of::<Vertex>(), 9);