1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::AnimationAsset; mod read; mod write; #[derive(Clone, Debug)] pub struct Uncompressed {} impl Into<AnimationAsset> for Uncompressed { fn into(self) -> AnimationAsset { AnimationAsset::Uncompressed(self) } }