diff interpreters/src/th06/ecl.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/ecl_vm.rs@01915da33b99
children
line wrap: on
line diff
copy from src/th06/ecl_vm.rs
copy to interpreters/src/th06/ecl.rs
--- a/src/th06/ecl_vm.rs
+++ b/interpreters/src/th06/ecl.rs
@@ -1,8 +1,8 @@
 //! ECL runner.
 
-use crate::th06::ecl::{Ecl, SubInstruction};
+use touhou_formats::th06::ecl::{Ecl, SubInstruction};
 use crate::th06::enemy::{Enemy, Offset, BulletAttributes, Position};
-use crate::util::prng::Prng;
+use touhou_utils::prng::Prng;
 use std::cell::RefCell;
 use std::rc::Rc;