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.

12 lines
227 B

  1. pub mod area;
  2. pub mod enemy;
  3. pub mod object;
  4. pub mod variant;
  5. pub mod maps;
  6. // TODO: don't just forward everything to the module scope
  7. pub use area::*;
  8. pub use enemy::*;
  9. pub use object::*;
  10. pub use variant::*;
  11. pub use maps::*;