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.

12 lines
555B

  1. //! Robocraft2 APIs for the CRF.
  2. //! Subject to change and breakages as RC2 is still in an early development stage.
  3. mod factory;
  4. pub use factory::{FactoryAPI, FactoryError};
  5. mod factory_json;
  6. pub use factory_json::{ErrorPayload, SearchPayload, SearchResponse, SearchResponseItem, RobotInfo, RobotPrice, CreateRobotPayload, CreateRobotResponse, FactoryInfoResponse, PublishRobotPayload, PublishRobotResponse, MyRobotsResponse, GetRobotResponse};
  7. mod portal;
  8. pub use self::portal::{PortalTokenProvider, AccountInfo, PortalCheckResponse, ITokenProvider};