Mercurial > touhou
diff interpreters/src/th06/anm0.rs @ 757:21b186be2590
Split the Rust version into multiple crates.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 05 Jan 2021 02:16:32 +0100 |
parents | src/th06/anm0_vm.rs@3687205fe620 |
children |
line wrap: on
line diff
copy from src/th06/anm0_vm.rs copy to interpreters/src/th06/anm0.rs --- a/src/th06/anm0_vm.rs +++ b/interpreters/src/th06/anm0.rs @@ -1,14 +1,14 @@ //! Animation runner. -use crate::th06::anm0::{ +use touhou_formats::th06::anm0::{ Script, Anm0, Call, Instruction, }; use crate::th06::interpolator::{Interpolator1, Interpolator2, Interpolator3, Formula}; -use crate::util::math::Mat4; -use crate::util::prng::Prng; +use touhou_utils::math::Mat4; +use touhou_utils::prng::Prng; use std::cell::RefCell; use std::rc::{Rc, Weak};