mirror of
https://github.com/bevyengine/bevy
synced 2025-01-12 13:18:55 +00:00
8 lines
159 B
Rust
8 lines
159 B
Rust
|
use zerocopy::{AsBytes, FromBytes};
|
||
|
|
||
|
#[repr(C)]
|
||
|
#[derive(Clone, Copy, AsBytes, FromBytes)]
|
||
|
pub struct Vertex {
|
||
|
pub pos: [i8; 4],
|
||
|
pub normal: [i8; 4],
|
||
|
}
|