animate/tween/group.rs
1use super::Tween;
2
3pub struct Group {}
4
5impl Group {
6 pub fn get_all() -> Vec<Tween> {
7 unimplemented!()
8 }
9
10 pub fn remove_all() {
11 unimplemented!()
12 }
13
14 pub fn add() {
15 unimplemented!()
16 }
17
18 pub fn remove() {
19 unimplemented!()
20 }
21
22 pub fn update() {
23 unimplemented!()
24 }
25}