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.

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