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.

16 lines
462B

  1. //! Cardlife vanilla and modded (CLre) APIs (WIP).
  2. //! LiveAPI and CLreServer are mostly complete, but some other APIs are missing.
  3. mod client;
  4. mod server;
  5. mod server_json;
  6. pub use self::server_json::{GameInfo, StatusInfo};
  7. pub use self::server::{CLreServer};
  8. mod live;
  9. mod live_json;
  10. pub use self::live::{LiveAPI};
  11. pub use self::live_json::{AuthenticationInfo, LobbyInfo, LiveGameInfo};
  12. pub(crate) use self::live_json::{AuthenticationPayload, LobbyPayload};