An unofficial collection of APIs used in FreeJam games and mods
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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};