An unofficial collection of APIs used in FreeJam games and mods
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
450B

  1. //! An unofficial collection of APIs used in Robocraft and Cardlife.
  2. //!
  3. //! This crate is WIP, but the available APIs are tested and very usable.
  4. #[cfg(feature = "cardlife")]
  5. pub mod cardlife;
  6. #[cfg(all(feature = "simple", feature = "cardlife"))]
  7. pub mod cardlife_simple;
  8. #[cfg(feature = "robocraft")]
  9. pub mod robocraft;
  10. #[cfg(all(feature = "simple", feature = "robocraft"))]
  11. pub mod robocraft_simple;
  12. #[cfg(feature = "techblox")]
  13. pub mod techblox;