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.

12 lines
313B

  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. #![warn(missing_docs)]
  5. pub mod cardlife;
  6. pub mod robocraft;
  7. #[cfg(feature = "simple")]
  8. pub mod robocraft_simple;
  9. #[cfg(feature = "simple")]
  10. pub mod cardlife_simple;