7 lines
104 B
Rust
7 lines
104 B
Rust
#[repr(C)]
|
|
#[derive(Copy, Clone, Debug)]
|
|
struct Vertex {
|
|
position: [f32; 3],
|
|
color: [f32; 3],
|
|
}
|