aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels/src/traits/light_vols.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:23 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:23 +0100
commit439219e74090c7158f8dbc33fed4107a5eb7c003 (patch)
tree7ba62254b2d888578ff6c1c8de4f0f35c01c75dd /stockton-levels/src/traits/light_vols.rs
parent04f17923d38171f07f72603a54237f20ca3572dd (diff)
refactor(levels): no longer q3 specific
Diffstat (limited to 'stockton-levels/src/traits/light_vols.rs')
-rw-r--r--stockton-levels/src/traits/light_vols.rs15
1 files changed, 0 insertions, 15 deletions
diff --git a/stockton-levels/src/traits/light_vols.rs b/stockton-levels/src/traits/light_vols.rs
deleted file mode 100644
index 2014fad..0000000
--- a/stockton-levels/src/traits/light_vols.rs
+++ /dev/null
@@ -1,15 +0,0 @@
-use crate::types::Rgb;
-
-#[derive(Debug, Clone, Copy)]
-pub struct LightVol {
- pub ambient: Rgb,
- pub directional: Rgb,
- pub dir: [u8; 2],
-}
-
-pub trait HasLightVols {
- type LightVolsIter<'a>: Iterator<Item = &'a LightVol>;
-
- fn lightvols_iter(&self) -> Self::LightVolsIter<'_>;
- fn get_lightvol(&self, index: u32) -> &LightVol;
-}