1 2 3 4 5 6 7 8
use glam::Vec3; pub static mut LIGHTS: Vec<Light> = vec![]; pub struct Light{ pub position: Vec3, pub color: Vec3, }