diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:20 +0100 |
commit | 58319f04f239ab4a81b4eb878ad987fe453fef9e (patch) | |
tree | b3245686b548b3d5f51bd61be609c1bee239d155 /stockton-levels/src/traits/effects.rs | |
parent | ac3870a05701933d85c4a8b440d3c7dbc4959d33 (diff) |
feat(levels): coord system types and swizzling
the room is now the right way up! yay!
Diffstat (limited to 'stockton-levels/src/traits/effects.rs')
-rw-r--r-- | stockton-levels/src/traits/effects.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stockton-levels/src/traits/effects.rs b/stockton-levels/src/traits/effects.rs index d969dd1..dec2122 100644 --- a/stockton-levels/src/traits/effects.rs +++ b/stockton-levels/src/traits/effects.rs @@ -16,6 +16,7 @@ // along with stockton-bsp. If not, see <http://www.gnu.org/licenses/>. use super::HasBrushes; +use crate::coords::CoordSystem; /// One effect definition #[derive(Debug, Clone, PartialEq)] @@ -29,7 +30,7 @@ pub struct Effect { // todo: unknown: i32 } -pub trait HasEffects: HasBrushes { +pub trait HasEffects<S: CoordSystem>: HasBrushes<S> { type EffectsIter<'a>: Iterator<Item = &'a Effect>; fn effects_iter<'a>(&'a self) -> Self::EffectsIter<'a>; |