render iteration

This commit is contained in:
Jonas H
2026-02-08 14:06:35 +01:00
parent 2422106725
commit 82c3e1e3b0
67 changed files with 6381 additions and 1564 deletions

View File

@@ -0,0 +1,14 @@
use glam::Vec3;
pub struct PointlightComponent
{
pub offset: Vec3,
}
impl PointlightComponent
{
pub fn new(offset: Vec3) -> Self
{
Self { offset }
}
}