1
0
Fork 0

Refactoring + Begin add windows system and rendering

This commit is contained in:
Florian RICHER 2020-11-30 20:15:55 +01:00
parent 2a5bd593cb
commit 813280350f
7 changed files with 1505 additions and 66 deletions

View file

@ -0,0 +1,6 @@
#[derive(Default, Copy, Clone)]
pub struct Vertex {
pub position: [f32; 2],
}
vulkano::impl_vertex!(Vertex, position);