1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use std::time::Duration;
use crate::core::PackedAnimation;

#[derive(Clone)]
pub struct ScheduledAnimation
{
    pub is_loop: bool,
    pub start: f32,
    pub duration: Duration,
    pub animation: PackedAnimation
}