An unofficial collection of APIs used in FreeJam games and mods
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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