mod.rs 182B

123456789101112
  1. pub mod animate;
  2. pub mod order;
  3. use crate::ScenePoint;
  4. pub enum ItemBehavior {
  5. Standing, // since
  6. HideTo(ScenePoint),
  7. MoveTo(ScenePoint),
  8. MoveFastTo(ScenePoint),
  9. }