reng 0.1.1

A simple OpenGL engine with physics, UI, complex model handling and much more!
Documentation
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,
}