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.

20 lines
600B

  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;
  14. #[cfg(feature = "convert")]
  15. pub mod convert;
  16. #[cfg(feature = "robocraft2")]
  17. pub mod robocraft2;
  18. pub const VERSION: &str = env!("CARGO_PKG_VERSION");