You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
326 B

  1. #![feature(extract_if)]
  2. pub mod state;
  3. pub mod actions;
  4. pub mod apply_item;
  5. pub mod itemstateaction;
  6. pub mod inventory;
  7. pub mod floor;
  8. pub mod bank;
  9. pub mod tasks;
  10. pub mod trade;
  11. #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq, serde::Serialize, serde::Deserialize, derive_more::Display)]
  12. pub struct ClientItemId(pub u32);