diff options
author | HampusM <hampus@hampusmat.com> | 2025-06-05 18:23:29 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-06-05 18:23:29 +0200 |
commit | 9362dbdb04de92382833ff2d31de7fccef165934 (patch) | |
tree | b3922f93c90137782e005b991edfd0e29718c090 /engine/src/lighting.rs | |
parent | d56f5bce6a38ef71b3f15a3efa845637885a410f (diff) |
feat(engine): add builder macro to public api
Diffstat (limited to 'engine/src/lighting.rs')
-rw-r--r-- | engine/src/lighting.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/lighting.rs b/engine/src/lighting.rs index 09dd980..4406ed5 100644 --- a/engine/src/lighting.rs +++ b/engine/src/lighting.rs @@ -2,7 +2,7 @@ use ecs::{Component, Sole}; use crate::color::Color; use crate::data_types::vector::Vec3; -use crate::util::builder; +use crate::builder; builder! { #[builder(name = PointLightBuilder, derives = (Debug, Clone))] |