Magically import images and more into Gamecraft as blocks
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
- using System;
- namespace Pixi.Robots
- {
- public struct RobotBriefStruct
- {
- public int itemId;
-
- public string itemName;
-
- public string itemDescription;
-
- public string thumbnail;
-
- public string addedBy;
-
- public string addedByDisplayName;
-
- public int cpu;
-
- public int totalRobotRanking;
-
- public string cubeData;
-
- public string colourData;
-
- public bool featured;
-
- public string cubeAmounts; // this is sent incorrectly by the API server (it's actually a Dictionary<string, int>)
- }
-
- public struct RobotList
- {
- public RobotBriefStruct[] roboShopItems;
- }
-
- public struct RobotListResponse
- {
- public RobotList response;
-
- public int statusCode;
- }
-
- public struct RobotInfoResponse
- {
- public RobotStruct response;
-
- public int statusCode;
- }
- }
|