An unofficial collection of APIs used in FreeJam games and mods
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

20 Zeilen
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");