stuff oder so

This commit is contained in:
LunarAkai 2025-08-03 23:27:32 +02:00
commit 0eeb4b2563
8 changed files with 286 additions and 18 deletions

View file

@ -0,0 +1,8 @@
use glium::implement_vertex;
#[derive(Clone, Copy)]
pub struct Vertex {
pub(crate) position: [f32; 2],
pub(crate) color: [f32; 3],
}
implement_vertex!(Vertex, position, color);