An unofficial collection of APIs used in FreeJam games and mods
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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