This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

✨ Add ColoredObject#add_named_to

+4
+4
src/graphics/layer.rs
··· 157 157 pub fn add_to(self, layer: &mut Layer) { 158 158 layer.add_anon(self); 159 159 } 160 + 161 + pub fn add_named_to(self, name: impl Display, layer: &mut Layer) { 162 + layer.add(name, self); 163 + } 160 164 }