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 | 51168c753286eeee64410ab19dc9f78a4ea479e4 (patch) | |
tree | d384093c6fd11b36b189013b663f3500b18ec2a4 /stockton-levels/src/q3/brushes.rs | |
parent | d076d3a6fd484e298915cd85609ba9706abacc87 (diff) |
refactor(all): use new traits-based levels everywhere else.
unfortunately this also starts using an unstable feature - generic_associated_types
see rust-lang/rust#44265
Diffstat (limited to 'stockton-levels/src/q3/brushes.rs')
-rw-r--r-- | stockton-levels/src/q3/brushes.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/stockton-levels/src/q3/brushes.rs b/stockton-levels/src/q3/brushes.rs index 48462a2..f8a979d 100644 --- a/stockton-levels/src/q3/brushes.rs +++ b/stockton-levels/src/q3/brushes.rs @@ -104,14 +104,14 @@ fn get_sides( } -impl<'a> HasBrushes<'a> for Q3BSPFile { - type BrushesIter = std::slice::Iter<'a, Brush>; +impl HasBrushes for Q3BSPFile { + type BrushesIter<'a> = std::slice::Iter<'a, Brush>; - fn brushes_iter(&'a self) -> Self::BrushesIter { + fn brushes_iter<'a>(&'a self) -> Self::BrushesIter<'a> { self.brushes.iter() } - fn get_brush(&'a self, index: u32) -> &'a Brush { + fn get_brush<'a>(&'a self, index: u32) -> &'a Brush { &self.brushes[index as usize] } } |